This is an automated email from the ASF dual-hosted git repository. zhaojinchao pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/shardingsphere.git
The following commit(s) were added to refs/heads/master by this push: new bd70d4f3f54 Fix @master_heartbeat_period to 15 seconds (#34873) bd70d4f3f54 is described below commit bd70d4f3f54c4d5e325c2e4f68542460839b0758 Author: Raigor <raigor.ji...@gmail.com> AuthorDate: Tue Mar 4 23:52:10 2025 +0800 Fix @master_heartbeat_period to 15 seconds (#34873) --- .../pipeline/mysql/ingest/incremental/client/MySQLBinlogClient.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/data-pipeline/dialect/mysql/src/main/java/org/apache/shardingsphere/data/pipeline/mysql/ingest/incremental/client/MySQLBinlogClient.java b/kernel/data-pipeline/dialect/mysql/src/main/java/org/apache/shardingsphere/data/pipeline/mysql/ingest/incremental/client/MySQLBinlogClient.java index dc9ebe9fbc2..ac2b76ee971 100644 --- a/kernel/data-pipeline/dialect/mysql/src/main/java/org/apache/shardingsphere/data/pipeline/mysql/ingest/incremental/client/MySQLBinlogClient.java +++ b/kernel/data-pipeline/dialect/mysql/src/main/java/org/apache/shardingsphere/data/pipeline/mysql/ingest/incremental/client/MySQLBinlogClient.java @@ -189,7 +189,7 @@ public final class MySQLBinlogClient { } private void configureHeartbeat() { - execute("SET @master_heartbeat_period=15000000"); + execute("SET @master_heartbeat_period=15000000000"); } private void registerSlave() {