From 86e749f6cabe6559b7d7b233fd7be9110be8a955 Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Tue, 16 Aug 2016 16:27:39 -0400 Subject: [PATCH] Wait even longer for orphan's topic to be None. Toward #2080. --- system_tests/pubsub.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system_tests/pubsub.py b/system_tests/pubsub.py index 30d0fd5de3d9..fff5e9153bc0 100644 --- a/system_tests/pubsub.py +++ b/system_tests/pubsub.py @@ -280,8 +280,8 @@ def _found_orphan(result): def _no_topic(instance): return instance.topic is None - # Wait for the topic to clear: up to 63 seconds (2 ** 6 - 1) - retry_until_no_topic = RetryInstanceState(_no_topic, max_tries=7) + # Wait for the topic to clear: up to 127 seconds (2 ** 7 - 1) + retry_until_no_topic = RetryInstanceState(_no_topic, max_tries=8) retry_until_no_topic(orphaned.reload)() self.assertTrue(orphaned.topic is None)