fix(stream): fix syntax error.

This commit is contained in:
Haojun Liao 2024-08-29 16:02:33 +08:00
parent 90bec3cd3f
commit 251bdf51c1
1 changed files with 1 additions and 1 deletions

View File

@ -455,7 +455,7 @@ int32_t streamTaskCheckIfReqConsenChkptId(SStreamTask* pTask, int64_t ts) {
vgId, pConChkptInfo->statusTs);
return 1;
} else {
int64_t el = (ts - pConChkptInfo->statusTs) / 1000;
int32_t el = (ts - pConChkptInfo->statusTs) / 1000;
if ((pConChkptInfo->status == TASK_CONSEN_CHKPT_SEND) && el > 60) {
pConChkptInfo->statusTs = ts;