You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you have the same key defined with different cases, like if you loaded a YAML file (which typically has lower case keys), then merge!d in ENV (which will typically have upper case keys), then ENV will not necessarily override because the fetch function only returns the first key/value with a case-insensitive matching key.
Values merge! in should override previous values regardless of case.
The text was updated successfully, but these errors were encountered:
If you have the same key defined with different cases, like if you loaded a YAML file (which typically has lower case keys), then
merge!
d in ENV (which will typically have upper case keys), then ENV will not necessarily override because thefetch
function only returns the first key/value with a case-insensitive matching key.Values
merge!
in should override previous values regardless of case.The text was updated successfully, but these errors were encountered: