Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
vainhope committed Jul 19, 2023
2 parents eb9b834 + 0f63b06 commit 9504afc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ body:
- v1.1
- v1.2
- v1.3
- v1.4
validations:
required: true

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public static Properties convertToProp(RdbmsSourceDTO rdbmsSourceDTO, Properties
JSONObject propertiesJson = JSONUtil.parseJsonObject(rdbmsSourceDTO.getProperties());
for (String key : propertiesJson.keySet()) {
String value = propertiesJson.getString(key);
if (StringUtils.isNotBlank(value)) {
if (StringUtils.isNotBlank(value) && StringUtils.isNotBlank(prefix)) {
String newKey = key.startsWith(prefix) ? key : prefix + key;
properties.setProperty(newKey, value);
}
Expand Down

0 comments on commit 9504afc

Please sign in to comment.