-
Notifications
You must be signed in to change notification settings - Fork 4
Closed
Description
The following code snippet hung forever:
datasets = [dataset]
promise = h5obj.readDatasets(datasets, block=False, enableAttributes=False)
data = promise[dataset][:]It got "stuck" in h5promise.py:
def waitOnResult(self, dataset, timeout=None):
self.conditions[dataset].acquire()
if self.datasets[dataset] == None:
self.conditions[dataset].wait(timeout=timeout)
self.conditions[dataset].release()
return self.datasets[dataset] == NoneMetadata
Metadata
Assignees
Labels
No labels