From 17b1c76680cbbfcd1244d1f45268f19d468cda91 Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Fri, 12 Apr 2019 14:22:24 -0400 Subject: [PATCH] Increase destroy wait timeout for JdbcLockRLITests https://build.spring.io/browse/INT-MASTER-1493/ --- .../jdbc/leader/JdbcLockRegistryLeaderInitiatorTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-integration-jdbc/src/test/java/org/springframework/integration/jdbc/leader/JdbcLockRegistryLeaderInitiatorTests.java b/spring-integration-jdbc/src/test/java/org/springframework/integration/jdbc/leader/JdbcLockRegistryLeaderInitiatorTests.java index 22134f94a4..6c325aa44a 100644 --- a/spring-integration-jdbc/src/test/java/org/springframework/integration/jdbc/leader/JdbcLockRegistryLeaderInitiatorTests.java +++ b/spring-integration-jdbc/src/test/java/org/springframework/integration/jdbc/leader/JdbcLockRegistryLeaderInitiatorTests.java @@ -184,7 +184,7 @@ public class JdbcLockRegistryLeaderInitiatorTests { destroy(); - assertThat(countingPublisher.revoked.await(10, TimeUnit.SECONDS)).isTrue(); + assertThat(countingPublisher.revoked.await(20, TimeUnit.SECONDS)).isTrue(); granted = new CountDownLatch(1); countingPublisher = new CountingPublisher(granted);