We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ac330c4 + 86e749f commit c805391Copy full SHA for c805391
system_tests/pubsub.py
@@ -280,8 +280,8 @@ def _found_orphan(result):
280
def _no_topic(instance):
281
return instance.topic is None
282
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)
+ # Wait for the topic to clear: up to 127 seconds (2 ** 7 - 1)
+ retry_until_no_topic = RetryInstanceState(_no_topic, max_tries=8)
285
retry_until_no_topic(orphaned.reload)()
286
287
self.assertTrue(orphaned.topic is None)
0 commit comments