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 50cff3e commit a47b2e2Copy full SHA for a47b2e2
xarray/backends/zarr.py
@@ -1769,7 +1769,8 @@ def _get_open_params(
1769
missing_exc = zarr.errors.GroupNotFoundError
1770
1771
if _zarr_v3():
1772
- if not store.supports_consolidated_metadata:
+ # zarr 3.0.8 and earlier did not support this property - it was effectively assumed true
1773
+ if not getattr(store, "supports_consolidated_metadata", True):
1774
consolidated = consolidate_on_close = False
1775
1776
if consolidated in [None, True]:
0 commit comments