You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 26, 2025. It is now read-only.
I have a situation where I need to edit SONATA circuit nodes and edges. In order to read and edit them I use:
circuit = Circuit(str(circuit_config_file))
node = circuit.nodes[node_population_name].get(node_id)
# adjust node and its edges
....
with h5py.File(nodes_file)
The last line gives me
OSError: Unable to open file (unable to lock file, errno = 35, error message = 'Resource temporarily unavailable')
h5py/h5f.pyx:88: OSError
Can we provide a method to close all h5 files opened by the instance of Circuit?