Skip to content
This repository has been archived by the owner on Mar 4, 2021. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix race condition when running unit tests on Windows.
Without this fix, unit tests occassionally fail on Windows.
  • Loading branch information
ebukoski committed Aug 18, 2015
1 parent 22e0577 commit b28ed7a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -570,7 +570,7 @@ public ImmediateCleanupRule(DateTime now) {
@Override
public boolean isValid(Resource resource) {
resource.setExpectedTerminationTime(new Date(now.minusMinutes(10).getMillis()));
resource.setNotificationTime(new Date(now.getMillis()));
resource.setNotificationTime(new Date(now.getMillis()-5000));
return false;
}
}
Expand Down

0 comments on commit b28ed7a

Please sign in to comment.