Skip to content

Commit

Permalink
avoid warning
Browse files Browse the repository at this point in the history
  • Loading branch information
TonioF committed Nov 18, 2021
1 parent 908c1fe commit 2e4e157
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xcube_cci/dataaccess.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ def open_data(self, data_id: str, **open_params) -> Any:
chunk_store = CciChunkStore(self._cci_odp, data_id, cube_kwargs)
if max_cache_size:
chunk_store = zarr.LRUStoreCache(chunk_store, max_cache_size)
ds = xr.open_zarr(chunk_store)
ds = xr.open_zarr(chunk_store, consolidated=False)
ds = self._normalize_dataset(ds)
return ds

Expand Down

0 comments on commit 2e4e157

Please sign in to comment.