Skip to content

Commit

Permalink
PR fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-mbobowski committed Sep 19, 2024
1 parent 4de5cff commit bbfe1a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ public static ConfigDef getConfig() {
ICEBERG_ENABLED,
ConfigDef.Type.BOOLEAN,
ICEBERG_ENABLED_DEFAULT_VALUE,
ConfigDef.Importance.MEDIUM,
ConfigDef.Importance.HIGH,
"When set to true the connector will ingest data into the Iceberg table. Check the"
+ " official Snowflake documentation for the prerequisites.");
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class IcebergConfigValidator implements StreamingConfigValidator {
private static final String NO_SCHEMATIZATION_ERROR_MESSAGE =
"Ingestion to Iceberg table requires " + ENABLE_SCHEMATIZATION_CONFIG + " set to true";
private static final String INCOMPATIBLE_INGESTION_METHOD =
"Ingestion to Iceberg table is supported only for " + SNOWPIPE_STREAMING;
"Ingestion to Iceberg table is supported only for Snowpipe Streaming";

@Override
public ImmutableMap<String, String> validate(Map<String, String> inputConfig) {
Expand Down

0 comments on commit bbfe1a0

Please sign in to comment.