update telemInterval (#29703)

This commit is contained in:
Yihao Deng 2025-03-17 17:42:24 +08:00 committed by GitHub
parent 379a75a429
commit 2151c5cae0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -411,7 +411,7 @@ void mndDoTimerPullupTask(SMnode *pMnode, int64_t sec) {
mndStreamConsensusChkpt(pMnode);
}
if (sec % tsTelemInterval == (TMIN(86400, (tsTelemInterval - 1)))) {
if (tsTelemInterval > 0 && sec % tsTelemInterval == 0) {
mndPullupTelem(pMnode);
}