未验证 提交 c32ba4ec 编写于 作者: S Shengliang Guan 提交者: GitHub

Merge pull request #20270 from taosdata/fix/stopFunc

fix: should not set startFunc/stopFunc to 0. 
......@@ -512,7 +512,7 @@ static int32_t mndTransActionInsert(SSdb *pSdb, STrans *pTrans) {
if (fp) {
(*fp)(pSdb->pMnode, pTrans->param, pTrans->paramLen);
}
pTrans->startFunc = 0;
// pTrans->startFunc = 0;
}
return 0;
......@@ -555,7 +555,7 @@ static int32_t mndTransActionDelete(SSdb *pSdb, STrans *pTrans, bool callFunc) {
if (fp) {
(*fp)(pSdb->pMnode, pTrans->param, pTrans->paramLen);
}
pTrans->stopFunc = 0;
// pTrans->stopFunc = 0;
}
mndTransDropData(pTrans);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册