From 899ac0d285dcfe48df2412f36b7dc799a688c249 Mon Sep 17 00:00:00 2001 From: Jiri Pechanec Date: Mon, 16 Oct 2023 15:36:48 +0200 Subject: [PATCH] DBZ-7015 Hide the option in UI --- .../debezium/connector/postgresql/PostgresConnectorConfig.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/debezium-connector-postgres/src/main/java/io/debezium/connector/postgresql/PostgresConnectorConfig.java b/debezium-connector-postgres/src/main/java/io/debezium/connector/postgresql/PostgresConnectorConfig.java index 754ea580317..b1e61845e79 100755 --- a/debezium-connector-postgres/src/main/java/io/debezium/connector/postgresql/PostgresConnectorConfig.java +++ b/debezium-connector-postgres/src/main/java/io/debezium/connector/postgresql/PostgresConnectorConfig.java @@ -528,7 +528,8 @@ public static SchemaRefreshMode parse(String value) { .withType(Type.BOOLEAN) .withGroup(Field.createGroupEntry(Field.Group.CONNECTION_ADVANCED_REPLICATION, 3)) .withDefault(false) - .withImportance(Importance.HIGH) + .withImportance(Importance.LOW) + .withInvisibleRecommender() .withDescription( "Whether or not to seek to the last known offset on the replication slot." + "Enabling this option results in startup failure if the slot is re-created instead of data loss.");