Allow RSocketMessageHandlerITests to timeout

Fixes gh-7415
This commit is contained in:
Rob Winch 2019-09-09 15:33:36 -05:00
parent 6296e6e896
commit 5d0815bc76
1 changed files with 1 additions and 1 deletions

View File

@ -298,7 +298,7 @@ public class RSocketMessageHandlerITests {
}
private synchronized List<String> awaitPayloads() throws InterruptedException {
this.wait();
this.wait(TimeUnit.SECONDS.toMillis(1));
return this.payloads;
}