fix(stream): update the fill-time for quota limitation.

This commit is contained in:
Haojun Liao 2023-11-07 17:33:30 +08:00
parent e052d3cd62
commit 22808ce1b7
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ int32_t streamTaskGetDataFromInputQ(SStreamTask* pTask, SStreamQueueItem** pInpu
// no available token in bucket for sink task, let's wait for a little bit
if (taskLevel == TASK_LEVEL__SINK && (!streamTaskExtractAvailableToken(pTask->outputInfo.pTokenBucket, pTask->id.idStr))) {
stDebug("s-task:%s no available token in bucket for sink data, wait for 10ms", id);
taosMsleep(10);
// taosMsleep(10);
return TSDB_CODE_SUCCESS;
}