Skip to content

Commit

Permalink
Fix copy & paste bug in DevServicesDatasourceProcessor
Browse files Browse the repository at this point in the history
The PR #20349 only partially fixes the issue #20214 due to a copy & paste bug.

Relates to #20349
  • Loading branch information
knutwannheden committed Sep 24, 2021
1 parent c5a2f2c commit 54f3685
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ private DevServicesDatasourceResultBuildItem.DbResult startDevDb(String dbName,
propertiesMap.put(devServicesPrefix + "port", dataSourceBuildTimeConfig.devservices.port.getAsInt());
}
if (!dataSourceBuildTimeConfig.devservices.properties.isEmpty()) {
propertiesMap.put(devServicesPrefix + "port", dataSourceBuildTimeConfig.devservices.properties);
propertiesMap.put(devServicesPrefix + "properties", dataSourceBuildTimeConfig.devservices.properties);
}

Map<String, String> devDebProperties = new HashMap<>();
Expand Down

0 comments on commit 54f3685

Please sign in to comment.