Skip to content

Commit

Permalink
DBZ-8129 change check for "secure" so it takes value of JdbcConfig in…
Browse files Browse the repository at this point in the history
…stead of default value in from As400ConnectorConfig
  • Loading branch information
wltmlx authored and msillence committed Aug 23, 2024
1 parent 5372c44 commit 437be80
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public class As400RpcConnection implements AutoCloseable, Connect<AS400, IOExcep
public As400RpcConnection(As400ConnectorConfig config, As400StreamingChangeEventSourceMetrics streamingMetrics, List<FileFilter> includes) {
super();
this.config = config;
this.isSecure = config.isSecure();
this.isSecure = config.getJdbcConfig().getBoolean("secure", config.isSecure());
this.streamingMetrics = streamingMetrics;
try {
System.setProperty("com.ibm.as400.access.AS400.guiAvailable", "False");
Expand Down

0 comments on commit 437be80

Please sign in to comment.