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

[RLlib] - Unify namings for actor managers' outstanding in-flight requests metrics. #51159

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
4 changes: 2 additions & 2 deletions rllib/algorithms/algorithm.py
Original file line number Diff line number Diff line change
Expand Up @@ -3121,7 +3121,7 @@ def _run_one_evaluation(
"num_healthy_workers"
] = self.eval_env_runner_group.num_healthy_remote_workers()
eval_results[
"num_in_flight_async_reqs"
"actor_manager_num_outstanding_async_reqs"
] = self.eval_env_runner_group.num_in_flight_async_reqs()
eval_results[
"num_remote_worker_restarts"
Expand Down Expand Up @@ -3694,7 +3694,7 @@ def _compile_iteration_results_old_api_stack(
"num_healthy_workers"
] = self.env_runner_group.num_healthy_remote_workers()
results[
"num_in_flight_async_sample_reqs"
"actor_manager_num_outstanding_async_reqs"
] = self.env_runner_group.num_in_flight_async_reqs()
results[
"num_remote_worker_restarts"
Expand Down