Skip to content

Commit c805391

Browse files
authored
Merge pull request #2106 from tseaver/2080-wait-longer-for-orphan
Wait even longer for orphan's topic to be None.
2 parents ac330c4 + 86e749f commit c805391

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

system_tests/pubsub.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,8 +280,8 @@ def _found_orphan(result):
280280
def _no_topic(instance):
281281
return instance.topic is None
282282

283-
# Wait for the topic to clear: up to 63 seconds (2 ** 6 - 1)
284-
retry_until_no_topic = RetryInstanceState(_no_topic, max_tries=7)
283+
# Wait for the topic to clear: up to 127 seconds (2 ** 7 - 1)
284+
retry_until_no_topic = RetryInstanceState(_no_topic, max_tries=8)
285285
retry_until_no_topic(orphaned.reload)()
286286

287287
self.assertTrue(orphaned.topic is None)

0 commit comments

Comments
 (0)