-
-
Notifications
You must be signed in to change notification settings - Fork 302
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
open() fails for path to a v2 group in a RemoteStore #2444
Comments
the short-term fix is to handle the zarr-python/src/zarr/api/asynchronous.py Lines 307 to 313 in 4c3081c
Longer term, we should decide if " I started working on fixing this, it's turning out to be a bit thornier than I expected, mostly because we were not properly testing this behavior previously. I will have a PR up in a few days. |
I've changed some of this logic in #2442. Once that is a bit more baked, I can see if this is still an issue. |
Zarr version
v3.0.0b
Numcodecs version
n/a
Python Version
3.11
Operating System
Mac
Installation
pip install -e .
Description
Using the standard
open()
to open a v2 group inside aRemoteStore
fails.Steps to reproduce
So the issue here is the
open()
generally defaults to open viaopen_array()
and then switches toopen_group()
if the correct exception is handled. Sure enough this works if usingopen_group()
oropen_consolidated()
:Additional output
No response
The text was updated successfully, but these errors were encountered: