fix(stream): fix syntax error.

This commit is contained in:
Haojun Liao 2024-08-05 10:35:00 +08:00
parent 34ce872eaf
commit 183f33af87
1 changed files with 1 additions and 1 deletions

View File

@ -805,7 +805,7 @@ void checkpointTriggerMonitorFn(void* param, void* tmrId) {
if (pTask->info.taskLevel == TASK_LEVEL__SOURCE) { if (pTask->info.taskLevel == TASK_LEVEL__SOURCE) {
int32_t ref = atomic_sub_fetch_32(&pTask->status.timerActive, 1); int32_t ref = atomic_sub_fetch_32(&pTask->status.timerActive, 1);
stError("s-task:%s source task should not start the checkpoint-trigger monitor fn, quit", id, ref); stError("s-task:%s source task should not start the checkpoint-trigger monitor fn, ref:%d quit", id, ref);
streamMetaReleaseTask(pTask->pMeta, pTask); streamMetaReleaseTask(pTask->pMeta, pTask);
return; return;
} }