Skip to content

Commit b8a29b0

Browse files
authored
Fix flaky ServerSetDiscoveryTest (#6481)
Motivation: #6451 #6408 I'm not 100% sure but test failures seem to have decreased after increasing the timeout. Modifications: - Wait up to 60 seconds for the zookeeper test server to start. Result: - Closes #6451 - Closes #6408
1 parent 9a2b06a commit b8a29b0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

zookeeper3/src/test/java/com/linecorp/armeria/common/zookeeper/ZooKeeperExtension.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
public class ZooKeeperExtension extends AbstractAllOrEachExtension implements ZooKeeperAssert {
3535

36-
private static final Duration duration = Duration.ofSeconds(10);
36+
private static final Duration duration = Duration.ofSeconds(60);
3737
private static final TemporaryFolder tempFolder = new TemporaryFolder();
3838

3939
@Nullable

0 commit comments

Comments
 (0)