You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix: Orchestrator failed with assert result["result"] == HTTPOk.status_code
Problem:
The diagnostic VM returned HTTP 200 with {"result": False} when it could not connect to the internet.
Since this is an OK return code, `raise_for_status` did not raise an error and an assertion error was raised.
Solution:
Test that the returned status code also corresponds to HTTP OK.
0 commit comments