-
-
Notifications
You must be signed in to change notification settings - Fork 304
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
fix(remotestore): raise error if path includes scheme #2348
Conversation
pre-commit.ci autofix |
@martindurant - this is ready for another review. |
f"fs ({fs}) was not created with `asynchronous=True`, this may lead to surprising behavior", | ||
stacklevel=2, | ||
) | ||
if "://" in path and not path.startswith("http"): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could consider also "::", since that is used in chained fsspec URLs, but should not normally end up passed to the FS. However, it is not as special as "://", so I'm ok not to make a special case for it.
…into fix/remote-store-path
pre-commit.ci autofix |
closes #2342
This PR makes a few important changes to the
RemoteStore
:asynchronous=True
TODO: