fix: do not send ttl msg on taosd startup
This commit is contained in:
parent
f9678ebba1
commit
dafde51767
|
@ -127,15 +127,15 @@ static void *mndThreadFp(void *param) {
|
||||||
mndPullupTtl(pMnode);
|
mndPullupTtl(pMnode);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (sec % tsTransPullupInterval * 10 == 0) {
|
if (sec % tsTransPullupInterval == 0) {
|
||||||
mndPullupTrans(pMnode);
|
mndPullupTrans(pMnode);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (sec % tsMqRebalanceInterval * 10 == 0) {
|
if (sec % tsMqRebalanceInterval == 0) {
|
||||||
mndCalMqRebalance(pMnode);
|
mndCalMqRebalance(pMnode);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (sec % tsTelemInterval * 10 == (MIN(60, (tsTelemInterval - 1)))) {
|
if (sec % tsTelemInterval == (MIN(60, (tsTelemInterval - 1)))) {
|
||||||
mndPullupTelem(pMnode);
|
mndPullupTelem(pMnode);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue