-
Notifications
You must be signed in to change notification settings - Fork 5
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
Make the combination of get and set idempotent #287
Conversation
When you |
src/zarr.cpp
Outdated
@@ -68,19 +70,16 @@ validate_props(const StorageProperties* props) | |||
CHECK(tokens.size() > 2); // http://endpoint/bucket | |||
} else { | |||
const fs::path path = as_path(*props); | |||
fs::path parent_path = path.parent_path().string(); | |||
LOG("path: '%s'", path.string().c_str()); |
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.
Don't merge while this line is still 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.
lgtm. don't forget about removing that log line before merging.
std::string
when generating paths fromStorageProperties::uri
.