Skip to content

Commit

Permalink
Merge branch 'master' into fix/job-manager-fd-leak
Browse files Browse the repository at this point in the history
  • Loading branch information
ujjawal-khare-27 authored Oct 18, 2024
2 parents 31b213e + 09cf5bb commit 17e0338
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/ray/data/datasource/datasink.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def on_write_complete(self, write_result_blocks: List[Block]) -> WriteResult:
aggregated_results_str = ""
for k in fields(aggregated_write_results.__class__):
v = getattr(aggregated_write_results, k.name)
aggregated_results_str += f"\t{k}: {v}\n"
aggregated_results_str += f"\t- {k.name}: {v}\n"

logger.info(
f"Write operation succeeded. Aggregated write results:\n"
Expand Down

0 comments on commit 17e0338

Please sign in to comment.