mirror of
https://github.com/wassname/ray.git
synced 2026-09-11 12:43:20 +08:00
Revert "[Dashboard] Fix missing actor pid (#13229)"
This reverts commit 4853aa96cb.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user