Skip to content

Commit

Permalink
increase timeout (Consensys#7891)
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Harris <[email protected]>
  • Loading branch information
rolfyone authored Jan 17, 2024
1 parent 821da85 commit a0bd468
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,8 @@ void canAccessDifferentValidatorConcurrently()
});
threadAcquired.await();
assertThat(firstSigner).isNotCompleted();
secondSigner.get(50, TimeUnit.MILLISECONDS);
// flaky on Windows
secondSigner.get(500, TimeUnit.MILLISECONDS);
assertThat(secondSigner).isCompleted();
releaseLock.set(true);
// flaky on Windows
Expand Down

0 comments on commit a0bd468

Please sign in to comment.