fix(stream): fix syntax error.

This commit is contained in:
Haojun Liao 2024-01-04 19:20:50 +08:00
parent 356b7093f5
commit 0c8d5e3586
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ int32_t streamTaskSetReady(SStreamTask* pTask) {
pTask->execInfo.start = taosGetTimestampMs();
int64_t el = (pTask->execInfo.start - pTask->execInfo.init);
stDebug("s-task:%s all %d downstream ready, init completed, elapsed time:%" PRId64 "ms, task status:%s",
pTask->id.idStr, numOfDowns, el, p);
pTask->id.idStr, numOfDowns, el, p->name);
return TSDB_CODE_SUCCESS;
}