Skip to content

Commit

Permalink
Merge pull request #22960 from taosdata/fix/TD-26346-main
Browse files Browse the repository at this point in the history
fix:return in progress in drop consumer group
  • Loading branch information
hjxilinx committed Sep 18, 2023
2 parents 5ee1f23 + 59d8f7d commit 2e2d445
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion source/dnode/mnode/impl/src/mndSubscribe.c
Original file line number Diff line number Diff line change
Expand Up @@ -875,7 +875,11 @@ static int32_t mndProcessDropCgroupReq(SRpcMsg *pMsg) {
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) {}
Expand Down

0 comments on commit 2e2d445

Please sign in to comment.