fix: update telemetry and trans timer

This commit is contained in:
Shengliang Guan 2022-08-23 10:42:44 +08:00
parent aca3d91354
commit 5257b77f94
1 changed files with 2 additions and 2 deletions

View File

@ -114,7 +114,7 @@ static void *mndThreadFp(void *param) {
mndTtlTimer(pMnode);
}
if (lastTime % (tsTransPullupInterval * 10) == 10) {
if (lastTime % (tsTransPullupInterval * 10) == 1) {
mndPullupTrans(pMnode);
}
@ -122,7 +122,7 @@ static void *mndThreadFp(void *param) {
mndCalMqRebalance(pMnode);
}
if (lastTime % (tsTelemInterval * 10) == 30) {
if (lastTime % (tsTelemInterval * 10) == 1) {
mndPullupTelem(pMnode);
}