From 954dc3798101522fef211b1a3595cf2ca3fd032e Mon Sep 17 00:00:00 2001 From: shenglian zhou Date: Wed, 25 Aug 2021 09:13:41 +0800 Subject: [PATCH] schemaless:decrease sleep time during errors --- src/client/src/tscParseLineProtocol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/src/tscParseLineProtocol.c b/src/client/src/tscParseLineProtocol.c index c0ed1feb6b..801d32a1ee 100644 --- a/src/client/src/tscParseLineProtocol.c +++ b/src/client/src/tscParseLineProtocol.c @@ -898,7 +898,7 @@ static int32_t insertChildTableBatch(TAOS* taos, char* cTableName, SArray* cols } taos_free_result(res2); if (tryAgain) { - taosMsleep(100 * (2 << (try))); + taosMsleep(50 * (2 << (try))); } } } while (tryAgain);