-
-
Notifications
You must be signed in to change notification settings - Fork 67
Sync dev to main #143
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
Sync dev to main #143
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| pid=227499 | ||
| pid=29780 | ||
| host=pve | ||
| time=2026-02-05T20:31:58+01:00 | ||
| time=2026-02-09T14:30:21+01:00 | ||
|
Comment on lines
+1
to
+3
|
||
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.
configVarExpander uppercases variable names before looking them up in the process environment. This prevents expansion of commonly-lowercase env vars (e.g. http_proxy/no_proxy) when referenced as ${http_proxy}. Consider checking the original key with os.LookupEnv(key) as a fallback (while still using uppercased keys for config-file lookups).