Skip to content

Commit

Permalink
Time not monotonic.
Browse files Browse the repository at this point in the history
  • Loading branch information
henningandersen committed Jul 1, 2020
1 parent 05ec98a commit b6b565a
Showing 1 changed file with 1 addition and 3 deletions.
Expand Up @@ -443,9 +443,7 @@ public MemoryUsage doubleCheck(MemoryUsage memoryUsed) {

blackHole += localBlackHole;
logger.trace("black hole [{}]", blackHole);
long now = timeSupplier.getAsLong();
assert now > this.lastCheckTime;
this.lastCheckTime = now;
this.lastCheckTime = timeSupplier.getAsLong();
}
}

Expand Down

0 comments on commit b6b565a

Please sign in to comment.