TUN-4096: Reduce tunnel not connected assertion backoff to address flaky termination tests

This commit is contained in:
cthuang 2021-03-18 08:28:38 +00:00
parent 2c75326021
commit 9767ba1853
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ def wait_tunnel_ready(tunnel_url=None, require_min_connections=1):
send_request(s, tunnel_url, True)
@retry(stop_max_attempt_number=MAX_RETRIES, wait_fixed=BACKOFF_SECS * 1000)
@retry(stop_max_attempt_number=MAX_RETRIES * BACKOFF_SECS, wait_fixed=1000)
def check_tunnel_not_connected():
url = f'http://localhost:{METRICS_PORT}/ready'