This commit is contained in:
2026-05-05 19:51:14 +02:00
parent 17ba07b592
commit 48ef85bec5
17 changed files with 7968 additions and 1393663 deletions

View File

@@ -15,7 +15,7 @@ Wait For Backend Health
WHILE True
${now}= Evaluate time.time()
IF ${now} >= ${deadline} FAIL Backend did not become healthy within ${timeout} seconds
${response}= GET ${BACKEND_URL}/api/health expected_status=200
${response}= GET ${BACKEND_URL}/api/v1/health expected_status=200
IF ${response.status} == 200 BREAK
Sleep ${interval}
END