Skip to content

Commit

Permalink
Merge pull request #2106 from tseaver/2080-wait-longer-for-orphan
Browse files Browse the repository at this point in the history
Wait even longer for orphan's topic to be None.
  • Loading branch information
tseaver authored Aug 16, 2016
2 parents ac330c4 + 86e749f commit c805391
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions system_tests/pubsub.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit c805391

Please sign in to comment.