Revert "[Dashboard] Fix missing actor pid (#13229)"

This reverts commit 4853aa96cb.
This commit is contained in:
Amog Kamsetty
2021-01-13 18:03:15 -08:00
committed by GitHub
parent 602c103eae
commit 12e1175dd1
5 changed files with 34 additions and 13 deletions
@@ -121,7 +121,7 @@ def test_actors(disable_aiohttp_cache, ray_start_with_dashboard):
assert "name" in one_entry
assert "numRestarts" in one_entry
assert "pid" in one_entry
all_pids = {entry["pid"] for entry in actors.values()}
all_pids = [entry["pid"] for entry in actors.values()]
assert 0 in all_pids # The infeasible actor
assert len(all_pids) > 1
break