-
Notifications
You must be signed in to change notification settings - Fork 159
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 is_local for paths starting with az://
#849
Conversation
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.
Thank you. Changes look good. Have you verified it working properly with the script in the issue. Could you please add a test here?
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.
Thanks for opening this PR. I agree testing this behavior will be helpful.
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.
Ignore
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.
The test LGTM but we need to either install adlfs
or skip it when adlfs
is not available. The former is probably best.
Signed-off-by: Marco Pfirrmann <[email protected]>
Signed-off-by: Marco Pfirrmann <[email protected]>
I added the |
@NivekT has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
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.
LGTM!
Summary: Fix bug introduced by #849 - Replace `skipIfNoFSSpecS3` by `skipIfNoFSSpecAZ` for tests to access Azure Blob - Add `adlfs` to conda test requirements. Pull Request resolved: #902 Reviewed By: NivekT Differential Revision: D41378561 Pulled By: ejguan fbshipit-source-id: be99d1371379e1c87c2f2ac062b009f88575aa0a
Signed-off-by: Marco Pfirrmann [email protected]
Fixes #840.
The module used to extract the protocol does not differentiate between
abfs://
andaz://
paths, always returningabfs
. This fix addsaz
to the protocol list to be checked.