fix:return in progress in drop consumer group

This commit is contained in:
wangmm0220 2023-09-18 17:55:00 +08:00
parent 101161c52e
commit 59d8f7d10f
1 changed files with 5 additions and 1 deletions

View File

@ -875,7 +875,11 @@ end:
mndReleaseSubscribe(pMnode, pSub);
mndTransDrop(pTrans);
return code;
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) {}