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
Similar to #2024, the "configuration" key of chunk_key_encoding is optional. If it's missing, a ValueError is raised:
File "/Users/jamoore/opt/challenge/zarr-python/src/zarr/common.py", line 130, in parse_named_configuration
raise ValueError(f"Named configuration does not have a 'configuration' key. Got {data}.")
ValueError: Named configuration does not have a 'configuration' key. Got {'name': 'default'}.
yes that would be an immediate fix. longer term we should remove parse_named_configuration and replace it with something like parse_chunk_key_encoding, parse_chunk_grid, etc, that each can handle a NamedConfiguration as input.
Similar to #2024, the "configuration" key of
chunk_key_encoding
is optional. If it's missing, a ValueError is raised:cc: @d-v-b
Edit: data was originally written by tensorstore
The text was updated successfully, but these errors were encountered: