Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
StrikeW committed May 5, 2024
1 parent 7e16f5d commit cf04e6e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ public MySqlValidator(
properties.setProperty("user", userProps.get(DbzConnectorConfig.USER));
properties.setProperty("password", userProps.get(DbzConnectorConfig.PASSWORD));
properties.setProperty(
"sslMode", userProps.getOrDefault(DbzConnectorConfig.MYSQL_SSL_MODE, "disabled"));
"sslMode", userProps.getOrDefault(DbzConnectorConfig.MYSQL_SSL_MODE, "DISABLED"));
properties.setProperty("allowPublicKeyRetrieval", "true");

this.jdbcConnection = DriverManager.getConnection(jdbcUrl, properties);
this.isCdcSourceJob = isCdcSourceJob;
Expand Down

0 comments on commit cf04e6e

Please sign in to comment.