fix(stream): fix error in check node update trans.

This commit is contained in:
Haojun Liao 2025-01-22 14:05:40 +08:00
parent 30358f1297
commit 9f2c448e36
1 changed files with 1 additions and 1 deletions

View File

@ -300,7 +300,7 @@ bool isNodeUpdateTransActive() {
while ((pIter = taosHashIterate(execInfo.transMgmt.pDBTrans, pIter)) != NULL) {
SStreamTransInfo *pTransInfo = (SStreamTransInfo *)pIter;
if (strcmp(pTransInfo->name, MND_STREAM_CHKPT_UPDATE_NAME) == 0) {
if (strcmp(pTransInfo->name, MND_STREAM_TASK_UPDATE_NAME) == 0) {
mDebug("stream:0x%" PRIx64 " %s st:%" PRId64 " is in task nodeEp update, create new stream not allowed",
pTransInfo->streamId, pTransInfo->name, pTransInfo->startTime);
exist = true;