fix: add-host for stand e2e under Docker host network (IFT DNS)
CI / deploy-ift (push) Successful in 2m4s
CI / test (push) Successful in 6m8s
CI / e2e-ift (push) Failing after 3m27s
CI / deploy-stage (push) Has been skipped
CI / e2e-stage (push) Has been skipped

This commit is contained in:
2026-07-20 01:45:10 +03:00
parent c760070611
commit 2440c50330
3 changed files with 30 additions and 4 deletions
+2 -2
View File
@@ -149,10 +149,10 @@ ct_mode() ->
wait_for_remote() ->
URL = api_test_runner:get_admin_url() ++ "/admin/health",
ct:pal("Waiting for remote API: ~s", [URL]),
wait_for_health(URL, 30).
wait_for_health(URL, 90).
wait_for_health(_URL, 0) ->
ct:fail("Remote API did not start within 30 seconds");
ct:fail("Remote API did not start within 90 seconds");
wait_for_health(URL, Retries) ->
case httpc:request(get, {URL, []}, [{timeout, 5000}, {ssl, [{verify, verify_none}]}], []) of
{ok, {{_, 200, _}, _, _}} -> ok;