Skip to content

Commit d99b357

Browse files
APM-6136 bump retries when waiting for container to be ready
1 parent b8e0c74 commit d99b357

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

e2e/tests/api_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def _container_not_ready(resp: requests.Response):
7979

8080
deployed_commit_id = resp.json().get("commitId")
8181

82-
while deployed_commit_id != getenv("SOURCE_COMMIT_ID") or _container_not_ready(resp) and retries <= 45:
82+
while deployed_commit_id != getenv("SOURCE_COMMIT_ID") or _container_not_ready(resp) and retries <= 50:
8383
resp = requests.get(
8484
f"{nhsd_apim_proxy_url}/_status", headers=status_endpoint_auth_headers, timeout=30
8585
)

0 commit comments

Comments
 (0)