run_until() of test.test_asyncio.utils now uses an exponential sleep
delay (max: 1 second), rather than a fixed delay of 1 ms. Similar
design than support.sleeping_retry() wait strategy that applies
exponential backoff.
def run_until(loop, pred, timeout=support.SHORT_TIMEOUT):
+ delay = 0.001
for _ in support.busy_retry(timeout, error=False):
if pred():
break
- loop.run_until_complete(tasks.sleep(0.001))
+ loop.run_until_complete(tasks.sleep(delay))
+ delay = max(delay * 2, 1.0)
else:
raise futures.TimeoutError()