Skip to content

Commit

Permalink
add scheduler prints
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinzwang committed Feb 14, 2024
1 parent 7edb526 commit bdbdc73
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions daft/runners/ray_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -704,11 +704,13 @@ def __init__(
max_task_backlog=max_task_backlog,
use_ray_tqdm=True,
)
print("==== using remote scheduler ====")

Check warning on line 707 in daft/runners/ray_runner.py

View check run for this annotation

Codecov / codecov/patch

daft/runners/ray_runner.py#L707

Added line #L707 was not covered by tests
else:
self.scheduler = Scheduler(
max_task_backlog=max_task_backlog,
use_ray_tqdm=False,
)
print("==== using local scheduler ====")

print("==== Got to after scheduler creation ====")

Expand Down

0 comments on commit bdbdc73

Please sign in to comment.