Skip to content

Commit 71f2837

Browse files
authored
Fix MaaS gateway wait condition in tests (#1096)
Merging as requested.
1 parent ea128ca commit 71f2837

File tree

1 file changed

+1
-1
lines changed
  • tests/model_serving/model_server/maas_billing

1 file changed

+1
-1
lines changed

tests/model_serving/model_server/maas_billing/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -819,7 +819,7 @@ def maas_gateway_api(
819819

820820
if gw.exists:
821821
LOGGER.info(f"Reusing existing gateway {MAAS_GATEWAY_NAMESPACE}/{MAAS_GATEWAY_NAME}")
822-
gw.wait_for_condition(condition="Ready", status="True", timeout=300)
822+
gw.wait_for_condition(condition="Programmed", status="True", timeout=300)
823823
yield
824824
else:
825825
LOGGER.info(f"Creating gateway {MAAS_GATEWAY_NAMESPACE}/{MAAS_GATEWAY_NAME}")

0 commit comments

Comments
 (0)