Skip to content

Commit

Permalink
[BUG] Fix actor pool initialization in ray client mode
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinzwang committed Oct 11, 2024
1 parent 9ae8122 commit 2234066
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion daft/runners/ray_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -1173,7 +1173,9 @@ def actor_pool_context(
if self.ray_client_mode:
try:
yield ray.get(
self.scheduler_actor.get_actor_pool.remote(name, resource_request, num_actors, projection)
self.scheduler_actor.get_actor_pool.remote(
name, resource_request, num_actors, projection, execution_config
)
)
finally:
self.scheduler_actor.teardown_actor_pool.remote(name)
Expand Down

0 comments on commit 2234066

Please sign in to comment.