Merge pull request #22960 from taosdata/fix/TD-26346-main

fix:return in progress in drop consumer group
This commit is contained in:
Haojun Liao 2023-09-18 19:59:41 +08:00 committed by GitHub
commit 2e2d445f3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -875,7 +875,11 @@ end:
mndReleaseSubscribe(pMnode, pSub);
mndTransDrop(pTrans);
if (code != 0) {
mError("cgroup %s on topic:%s, failed to drop", dropReq.cgroup, dropReq.topic);
return code;
}
return TSDB_CODE_ACTION_IN_PROGRESS;
}
void mndCleanupSubscribe(SMnode *pMnode) {}