Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dataroaring committed Jun 21, 2024
1 parent b61ecf4 commit c4aecaf
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1218,6 +1218,8 @@ public boolean isExpired(long currentTimeMs) {
if (jobType == EtlJobType.INSERT) {
expireTime = Config.streaming_label_keep_max_second;
}
LOG.info("currentTimeMs: {}, finishTimestamp: {}, isCompleted: {}, expireTime: {}",
currentTimeMs, getFinishTimestamp(), isCompleted(), expireTime);

return (currentTimeMs - getFinishTimestamp()) / 1000 > expireTime;
}
Expand Down

0 comments on commit c4aecaf

Please sign in to comment.