Skip to content

Commit

Permalink
[BUG] Fix remote mode typo (#1092)
Browse files Browse the repository at this point in the history
Verified fix on local ray cluster via ray client

Co-authored-by: Xiayue Charles Lin <[email protected]>
  • Loading branch information
xcharleslin and Xiayue Charles Lin authored Jun 26, 2023
1 parent cb1bf51 commit 9063395
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daft/runners/ray_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ def run_iter(self, plan: logical_plan.LogicalPlan) -> Iterator[ray.ObjectRef]:

while True:
if isinstance(self.ray_context, ray.client_builder.ClientContext):
result = ray.get(self.scheduler_actor.next(result_uuid))
result = ray.get(self.scheduler_actor.next.remote(result_uuid))
else:
result = self.scheduler.next(result_uuid)

Expand Down

0 comments on commit 9063395

Please sign in to comment.