From 8dbe7ac37720f5f512edcc1afb72faaf4dd4cac1 Mon Sep 17 00:00:00 2001 From: Liu Jicong Date: Wed, 26 Oct 2022 14:02:36 +0800 Subject: [PATCH] fix: failed case --- source/client/src/clientTmq.c | 2 +- tests/system-test/7-tmq/tmqConsFromTsdb1.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/source/client/src/clientTmq.c b/source/client/src/clientTmq.c index a4ca1f796b..c18e1e3e40 100644 --- a/source/client/src/clientTmq.c +++ b/source/client/src/clientTmq.c @@ -1619,7 +1619,7 @@ void* tmqHandleAllRsp(tmq_t* tmq, int64_t timeout, bool pollIfReset) { taosGetQitem(tmq->qall, (void**)&rspWrapper); if (rspWrapper == NULL) { - tscDebug("consumer %" PRId64 " mqueue empty", tmq->consumerId); + /*tscDebug("consumer %" PRId64 " mqueue empty", tmq->consumerId);*/ return NULL; } } diff --git a/tests/system-test/7-tmq/tmqConsFromTsdb1.py b/tests/system-test/7-tmq/tmqConsFromTsdb1.py index 499f837ccc..d0ab8d4fe3 100644 --- a/tests/system-test/7-tmq/tmqConsFromTsdb1.py +++ b/tests/system-test/7-tmq/tmqConsFromTsdb1.py @@ -86,7 +86,7 @@ class TDTestCase: 'rowsPerTbl': 10000, 'batchNum': 10, 'startTs': 1640966400000, # 2022-01-01 00:00:00.000 - 'pollDelay': 15, + 'pollDelay': 25, 'showMsg': 1, 'showRow': 1, 'snapshot': 1} @@ -157,7 +157,7 @@ class TDTestCase: 'rowsPerTbl': 10000, 'batchNum': 10, 'startTs': 1640966400000, # 2022-01-01 00:00:00.000 - 'pollDelay': 10, + 'pollDelay': 25, 'showMsg': 1, 'showRow': 1, 'snapshot': 1} -- GitLab