Skip to content
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

Merged
merged 2 commits into from
Dec 19, 2021

Conversation

giordano
Copy link
Contributor

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).

@StefanKarpinski
Copy link
Member

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.

@giordano
Copy link
Contributor Author

giordano commented Nov 24, 2021

I think there's some spots in PlatformEngines where we do this too.

Oh yes, I saw

val = get(ENV, var, nothing)
state = val === nothing ? "n" :
lowercase(val) in ("true", "t", "1", "yes", "y") ? "t" :
lowercase(val) in ("false", "f", "0", "no", "n") ? "f" : "o"

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.

Might want to allow passing whether the default should be true or false? Although if the default is always false, I guess no need.

Added the default value (which seems to be always false at the moment JULIA_PKG_PRECOMPILE_AUTO defaults to true) 👍

@giordano
Copy link
Contributor Author

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")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perhaps

Suggested change
ignore_hash = bool_env("JULIA_PKG_IGNORE_HASHES")
ignore_hash = get_bool_env("JULIA_PKG_IGNORE_HASHES")

Copy link
Contributor Author

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?

Copy link
Member

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

@IanButterworth
Copy link
Member

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants