From 590f2679e8302548d7b95dd2ac3e21c65132661f Mon Sep 17 00:00:00 2001 From: Yitao CHI Date: Sun, 3 Apr 2022 11:05:58 +0800 Subject: [PATCH] [TS-1383](common): Modify the default syncCheckInterval value to 3000. --- src/common/src/tglobal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/src/tglobal.c b/src/common/src/tglobal.c index 0e4d412cdc..6848481357 100644 --- a/src/common/src/tglobal.c +++ b/src/common/src/tglobal.c @@ -49,7 +49,7 @@ int32_t tsDnodeId = 0; int64_t tsDnodeStartTime = 0; int8_t tsDnodeNopLoop = 0; int32_t tsTcpConnTimeout = 1000; // timeout for tcp client connection in ms. -int32_t tsSyncCheckInterval = 1000; // peer sync check interval in ms. +int32_t tsSyncCheckInterval = 3000; // peer sync check interval in ms. // common int32_t tsRpcTimer = 300; -- GitLab