Skip to content

Commit

Permalink
topology : fix connection factory property evaluation
Browse files Browse the repository at this point in the history
(cherry picked from commit ed7a83a)
  • Loading branch information
Laurent Perez authored and acogoluegnes committed Feb 10, 2022
1 parent 8da31a3 commit b53e5ca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ public static void load(ConnectionFactory cf, Map<String, String> properties, St
}
String topologyRecovery = lookUp(TOPOLOGY_RECOVERY_ENABLED, properties, prefix);
if (topologyRecovery != null) {
cf.setTopologyRecoveryEnabled(Boolean.getBoolean(topologyRecovery));
cf.setTopologyRecoveryEnabled(Boolean.valueOf(topologyRecovery));
}
String networkRecoveryInterval = lookUp(CONNECTION_RECOVERY_INTERVAL, properties, prefix);
if (networkRecoveryInterval != null) {
Expand Down

0 comments on commit b53e5ca

Please sign in to comment.