Merge pull request #22960 from taosdata/fix/TD-26346-main
fix:return in progress in drop consumer group
This commit is contained in:
commit
2e2d445f3c
|
@ -875,7 +875,11 @@ end:
|
||||||
mndReleaseSubscribe(pMnode, pSub);
|
mndReleaseSubscribe(pMnode, pSub);
|
||||||
mndTransDrop(pTrans);
|
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) {}
|
void mndCleanupSubscribe(SMnode *pMnode) {}
|
||||||
|
|
Loading…
Reference in New Issue