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 a6f66bd commit 1cdc69d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1219,7 +1219,7 @@ public boolean isExpired(long currentTimeMs) {
expireTime = Config.streaming_label_keep_max_second;
}

LOG.INFO("state {}, expireTime {}, currentTimeMs {}, finishTimestamp {}",
LOG.info("state {}, expireTime {}, currentTimeMs {}, finishTimestamp {}",
state, expireTime, currentTimeMs, getFinishTimestamp());
return (currentTimeMs - getFinishTimestamp()) / 1000 > expireTime;
}
Expand Down

0 comments on commit 1cdc69d

Please sign in to comment.