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
Treat false-seeming HIDE_* env var values as false
This changes how HIDE_WINDOWS_KNOWN_ERRORS and
HIDE_WINDOWS_FREEZE_ERRORS environment variables, if present, are
interpreted, so that values that strongly seem intuitivley to
represent falsehood now do.
Before, only the empty string was treated as false. Now:
- "0", "false", "no", and their case variants, as well as the empty
string, are treated as false.
- The presence of leading and trailing whitespace in the value now
longer changes the truth value it represents. For example,
all-whitespace (e.g., a space) is treated as false.
- Values other than the above false values, and the recognized true
values "1", "true", "yes", and their variants, are still treated
as true, but issue a warning about how they are unrecognied.
0 commit comments