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 ca84394 commit b16e6fbCopy full SHA for b16e6fb
distributed/condition.py
@@ -158,7 +158,9 @@ async def wait(self, timeout=None):
158
raise RuntimeError("Cannot wait on un-acquired condition")
159
160
scheduler = self._get_scheduler_rpc()
161
- result = await scheduler.condition_wait(name=self.name, id=self.id, timeout=timeout)
+ result = await scheduler.condition_wait(
162
+ name=self.name, id=self.id, timeout=timeout
163
+ )
164
return result
165
166
async def notify(self, n=1):
0 commit comments