Skip to content

Commit 9767ba1

Browse files
committed
TUN-4096: Reduce tunnel not connected assertion backoff to address flaky termination tests
1 parent 2c75326 commit 9767ba1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

component-tests/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def wait_tunnel_ready(tunnel_url=None, require_min_connections=1):
6363
send_request(s, tunnel_url, True)
6464

6565

66-
@retry(stop_max_attempt_number=MAX_RETRIES, wait_fixed=BACKOFF_SECS * 1000)
66+
@retry(stop_max_attempt_number=MAX_RETRIES * BACKOFF_SECS, wait_fixed=1000)
6767
def check_tunnel_not_connected():
6868
url = f'http://localhost:{METRICS_PORT}/ready'
6969

0 commit comments

Comments
 (0)