Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[serve] Remove dashboard's dependency on Serve #23389

Merged
merged 13 commits into from
Mar 22, 2022
Prev Previous commit
Fix URL
  • Loading branch information
shrekris-anyscale committed Mar 22, 2022
commit b13c61cfd91599c7bda088dd57cb78e220542b28
2 changes: 1 addition & 1 deletion dashboard/tests/test_dashboard.py
Original file line number Diff line number Diff line change
@@ -718,7 +718,7 @@ def test_dashboard_does_not_depend_on_serve():
ctx = ray.init(include_dashboard=True)

# Ensure standard dashboard features, like snapshot, still work
response = requests.get(f"http://{ctx.dashboard_url}/api/snapshot/")
response = requests.get(f"http://{ctx.dashboard_url}/api/snapshot")
assert response.status_code == 200
assert response.json()["result"] is True
assert "snapshot" in response.json()["data"]