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

[core][state] List actors should show actors from dead jobs as well #31984

Closed
wants to merge 16 commits into from
Prev Previous commit
Next Next commit
fix
Signed-off-by: rickyyx <[email protected]>
  • Loading branch information
rickyyx committed Mar 23, 2023
commit a7363587ed900be5f2585626c0822c54226a8f6b
2 changes: 1 addition & 1 deletion python/ray/experimental/state/state_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ async def get_all_actor_info(
if not limit:
limit = RAY_MAX_LIMIT_FROM_DATA_SOURCE

request = GetAllActorInfoRequest(limit=limit)
request = GetAllActorInfoRequest(limit=limit, show_dead_jobs=True)
reply = await self._gcs_actor_info_stub.GetAllActorInfo(
request, timeout=timeout
)
Expand Down