Skip to content

Commit

Permalink
ref: ENG-789/Auto create schema feature for Append SF connector - Dis…
Browse files Browse the repository at this point in the history
…abling config validation for schema name
  • Loading branch information
wrehman-skap committed Sep 19, 2024
1 parent 7539d5e commit c3d2374
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,8 @@ public Config validate(Map<String, String> connectorConfigs) {
return result;
}

try {
// Disabling config validation due to ENG-789/Auto create schema feature for Append SF connector
/*try {
testConnection.schemaExists(connectorConfigs.get(Utils.SF_SCHEMA));
} catch (SnowflakeKafkaConnectorException e) {
LOGGER.error("Validate Error msg:{}, errorCode:{}", e.getMessage(), e.getCode());
Expand All @@ -304,7 +305,7 @@ public Config validate(Map<String, String> connectorConfigs) {
throw e;
}
return result;
}
}*/

LOGGER.info("Validated config with no error");
return result;
Expand Down

0 comments on commit c3d2374

Please sign in to comment.