Skip to content

Commit 59fcf50

Browse files
author
Phillip Webb
committed
Increase timeout for Stomp integration tests
1 parent d2eff4e commit 59fcf50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-messaging/src/test/java/org/springframework/messaging/simp/stomp/StompBrokerRelayMessageHandlerIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -595,7 +595,7 @@ public void expectAvailabilityStatusChanges(Boolean... expected) {
595595

596596
public void awaitAndAssert() throws InterruptedException {
597597
synchronized(this.monitor) {
598-
long endTime = System.currentTimeMillis() + 5000;
598+
long endTime = System.currentTimeMillis() + 6000;
599599
while (this.expected.size() != this.actual.size() && System.currentTimeMillis() < endTime) {
600600
this.monitor.wait(500);
601601
}

0 commit comments

Comments
 (0)