Skip to content

Commit

Permalink
[data][dashboard] fix confusing dataset operator name
Browse files Browse the repository at this point in the history
Signed-off-by: can <can@anyscale.com>
  • Loading branch information
can-anyscale committed Nov 19, 2024
1 parent d4476ac commit d8bcb6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/ray/data/_internal/execution/streaming_executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ def _get_state_dict(self, state):
"total": last_op.num_outputs_total(),
"end_time": time.time() if state != "RUNNING" else None,
"operators": {
f"{op.name}{i}": {
f"{op.name}_{i}": {
"progress": op_state.num_completed_tasks,
"total": op.num_outputs_total(),
"state": state,
Expand Down

0 comments on commit d8bcb6e

Please sign in to comment.