From 755e68b5cfd6b9ec81d806a36c5d922590a94c9b Mon Sep 17 00:00:00 2001 From: Alexandre Beslic Date: Thu, 15 Oct 2015 08:52:00 -0700 Subject: [PATCH] Fix timing issue on zookeeper failure test Signed-off-by: Alexandre Beslic --- test/integration/discovery/zk.bats | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/discovery/zk.bats b/test/integration/discovery/zk.bats index 893a324516..0da74ffb54 100644 --- a/test/integration/discovery/zk.bats +++ b/test/integration/discovery/zk.bats @@ -105,6 +105,6 @@ function teardown() { start_store # After a while, `join` and `manage` should reach the store. - retry 10 1 discovery_check_swarm_list "$DISCOVERY" - retry 10 1 discovery_check_swarm_info + retry 20 1 discovery_check_swarm_list "$DISCOVERY" + retry 20 1 discovery_check_swarm_info }