We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5dc4299 commit cdb4610Copy full SHA for cdb4610
tests/e2e/utils/cluster.py
@@ -386,10 +386,10 @@ def pod_has_containers_ready():
386
tool_calling_enabled = "tool_calling" in ols_config_suffix
387
388
if disconnected:
389
- return ready_containers == 1
390
- elif tool_calling_enabled:
+ return ready_containers >= 1
+ if tool_calling_enabled:
391
return ready_containers >= 2
392
- return ready_containers == 2
+ return ready_containers >= 2
393
394
# wait for the containers in the server pod to become ready
395
# two containers normally, three in case we're running mcp server
0 commit comments