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 3448f1c commit 31c031cCopy full SHA for 31c031c
bio2zarr/core.py
@@ -225,8 +225,10 @@ def results_as_completed(self):
225
def __exit__(self, exc_type, exc_val, exc_tb):
226
if exc_type is None:
227
wait_on_futures(self.futures)
228
+ # Note: this doesn't seem to be working correctly. If
229
+ # we set a timeout of None we get deadlocks
230
set_progress(self.progress_config.total)
- timeout = None
231
+ timeout = 1
232
else:
233
cancel_futures(self.futures)
234
timeout = 0
0 commit comments