-
-
Notifications
You must be signed in to change notification settings - Fork 274
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
Consistently parse all boolean environment variables #2858
Conversation
I think there's some spots in PlatformEngines where we do this too. Might want to allow passing whether the default should be true or false? Although if the default is always false, I guess no need. |
8f9ecb9
to
b695f08
Compare
Oh yes, I saw Lines 228 to 231 in 0d6a726
but that uses a three-value logic, I wasn't sure whether to add that to the helper function bool_env , it'd require all other places to guard nothing values.
Added the default value ( |
b695f08
to
6a955aa
Compare
6a955aa
to
3f82201
Compare
Bump 🙂 |
src/Artifacts.jl
Outdated
@@ -357,7 +358,7 @@ function download_artifact( | |||
# Since tree hash calculation is still broken on some systems, e.g. Pkg.jl#1860, | |||
# and Pkg.jl#2317 so we allow setting JULIA_PKG_IGNORE_HASHES=1 to ignore the | |||
# error and move the artifact to the expected location and return true | |||
ignore_hash = get(ENV, "JULIA_PKG_IGNORE_HASHES", nothing) == "1" | |||
ignore_hash = bool_env("JULIA_PKG_IGNORE_HASHES") |
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.
Perhaps
ignore_hash = bool_env("JULIA_PKG_IGNORE_HASHES") | |
ignore_hash = get_bool_env("JULIA_PKG_IGNORE_HASHES") |
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.
Not sure what you mean, is this a suggestion to rename the function?
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.
Yeah. Just a minor suggestion
I think we'd want env vars that exist for shared functionality in both LTS and new releases to behave the same, so I'm going to mark this for backport |
(cherry picked from commit 40961e6, PR#2858)
(cherry picked from commit 40961e6, PR#2858)
Note: this is basically only checking the truthy values, so values like
"truw"
would silently be parsed as a falsy value, but as far as I can tell that's what's happening at the moment anyways, so I don't think there is any practical change.Address #2705 (comment).