-
-
Notifications
You must be signed in to change notification settings - Fork 39
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
Config #245
Conversation
for k in ("hs_endpoint", "hs_username", "hs_endpoint"): | ||
if k not in Config._cfg: | ||
Config._cfg[k] = None | ||
if "bool_names" not in Config._cfg: |
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.
It looks like bool_names
and complex_names
are intended to let the application running HSDS customize what boolean and complex values are called.
Since this doesn't do anything right now and isn't related to this set of changes, I think it would be a good idea to bring this out until it's fully implemented
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.
That's valid, but I think I'll leave it in for compatibility. complex and bool types will be coming soon.
Added h5pyd.get_config method.
Also: retain track_order behvior over file open/close