According to zarr_fuse/zarr_storage.py:_zarr_fuse_options it seems that the order is following
- use kwargs
- use schema attrs
- use environment
So (1) is the lowest priority.
Is this the intended behavior?
My counter example with opposite priorities:
- I set up environment,
- then I have several schemas (so I want to possibly overwrite the environment)
- and finally I want to use one of the schema with different parameters (e.g. STORE_URL), so I want to overwrite it with kwargs..
According to
zarr_fuse/zarr_storage.py:_zarr_fuse_optionsit seems that the order is followingSo (1) is the lowest priority.
Is this the intended behavior?
My counter example with opposite priorities: