fix(query): change mnd redo action sleep

TD-18483
This commit is contained in:
Ganlin Zhao 2022-08-23 17:05:19 +08:00
parent 1009912abd
commit 0d73ed62b2
1 changed files with 1 additions and 1 deletions

View File

@ -1312,7 +1312,7 @@ static bool mndTransPerformRedoActionStage(SMnode *pMnode, STrans *pTrans) {
if (pTrans->failedTimes < 6) {
mError("trans:%d, stage keep on redoAction since action:%d code:0x%x not 0x%x, failedTimes:%d", pTrans->id,
pTrans->lastAction, pTrans->code, pAction->retryCode, pTrans->failedTimes);
taosMsleep(1000);
taosMsleep(100);
continueExec = true;
return true;
}