We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89d3380 commit 7f4a353Copy full SHA for 7f4a353
wrapper/src/main/java/software/amazon/jdbc/plugin/failover/ClusterAwareReaderFailoverHandler.java
@@ -396,7 +396,9 @@ public ReaderFailoverResult call() {
396
new Object[] {this.newHost.getUrl(), initialConnectionProps}));
397
398
try {
399
- final Properties copy = new Properties(initialConnectionProps);
+ final Properties copy = new Properties();
400
+ copy.putAll(initialConnectionProps);
401
+
402
final Connection conn = pluginService.forceConnect(this.newHost, copy);
403
pluginService.setAvailability(this.newHost.asAliases(), HostAvailability.AVAILABLE);
404
LOGGER.fine(
0 commit comments