From 8e385edebc973db306d3cc158b818f2cf39d39a1 Mon Sep 17 00:00:00 2001 From: Kelsey Newman Date: Mon, 30 Oct 2023 11:55:12 -0400 Subject: [PATCH] increase max heartbeat timeout --- .../integrations/source/postgres/PostgresCdcProperties.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/io/airbyte/integrations/source/postgres/PostgresCdcProperties.java b/src/main/java/io/airbyte/integrations/source/postgres/PostgresCdcProperties.java index b17c80e..deb77cd 100644 --- a/src/main/java/io/airbyte/integrations/source/postgres/PostgresCdcProperties.java +++ b/src/main/java/io/airbyte/integrations/source/postgres/PostgresCdcProperties.java @@ -23,7 +23,7 @@ public class PostgresCdcProperties { - private static final int HEARTBEAT_FREQUENCY_SEC = 10; + private static final int HEARTBEAT_FREQUENCY_SEC = 20; private static final Logger LOGGER = LoggerFactory.getLogger(PostgresCdcProperties.class); static Properties getDebeziumDefaultProperties(final JdbcDatabase database) {