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

Merge pull request #18904 from taosdata/fix/TD-21167

fix: disk full recovery issue
......@@ -149,10 +149,13 @@ int32_t dmRunDnode(SDnode *pDnode) {
return 0;
}
if (count == 0) osUpdate();
count %= 10;
count++;
if (count == 10) {
osUpdate();
count = 0;
} else {
count++;
}
taosMsleep(100);
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册