We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89f25e4 commit 3e0edbcCopy full SHA for 3e0edbc
doc/source/ray-core/doc_code/pattern_async_actor.py
@@ -51,7 +51,7 @@ async def run(self):
51
# Here we use await instead of ray.get() to
52
# wait for the next task and it will yield
53
# the control while waiting.
54
- task = await task_store.get_next_task.remote()
+ task = await self.task_store.get_next_task.remote()
55
self._execute_task(task)
56
57
def _execute_task(self, task):
0 commit comments