From 6738700a99a1b1993dbd671938d78bed8d3b216a Mon Sep 17 00:00:00 2001 From: Alex Duan <417921451@qq.com> Date: Tue, 14 Dec 2021 13:21:31 +0800 Subject: [PATCH] remove debug log in loop --- src/client/src/tscStream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/src/tscStream.c b/src/client/src/tscStream.c index c8d09412a4..e3bac7bb6d 100644 --- a/src/client/src/tscStream.c +++ b/src/client/src/tscStream.c @@ -187,7 +187,7 @@ static void tscProcessStreamTimer(void *handle, void *tmrId) { next_time = taosTimeTruncate(next_time, &pStream->interval, pStream->precision); timer = next_time - taosGetTimestamp(pStream->precision); // next time - now() if(timer < 0 ) { - tscDebug("CQ next time < now so loop add sliding. next_time=%" PRId64, next_time); + //tscDebug("CQ next time < now so loop add sliding. next_time=%" PRId64, next_time); continue; } -- GitLab