update telemInterval (#29703)
This commit is contained in:
parent
379a75a429
commit
2151c5cae0
|
@ -411,7 +411,7 @@ void mndDoTimerPullupTask(SMnode *pMnode, int64_t sec) {
|
||||||
mndStreamConsensusChkpt(pMnode);
|
mndStreamConsensusChkpt(pMnode);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (sec % tsTelemInterval == (TMIN(86400, (tsTelemInterval - 1)))) {
|
if (tsTelemInterval > 0 && sec % tsTelemInterval == 0) {
|
||||||
mndPullupTelem(pMnode);
|
mndPullupTelem(pMnode);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue