Skip to content

Commit

Permalink
[ISSUE #8935] Fix behind metrics unit error in timer message store (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
GenerousMan authored Nov 19, 2024
1 parent bf2f2a7 commit 78575af
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1724,7 +1724,7 @@ public long getEnqueueBehindMessages() {

public long getEnqueueBehindMillis() {
if (System.currentTimeMillis() - lastEnqueueButExpiredTime < 2000) {
return (System.currentTimeMillis() - lastEnqueueButExpiredStoreTime) / 1000;
return System.currentTimeMillis() - lastEnqueueButExpiredStoreTime;
}
return 0;
}
Expand Down

0 comments on commit 78575af

Please sign in to comment.