Originally created by @xoxys on GitHub (Jan 18, 2020).
Currently, uppercase bool values seems not to work e.g. SIGNUPS_ALLOWED=False which is really confusing and can lead to missconfigured public servers.
Normally, most common bool-ish string values like 1,0/yes,no/y,n/true,false/True,False should be converted to a real bool while reading env variables.
Originally created by @xoxys on GitHub (Jan 18, 2020).
Currently, uppercase bool values seems not to work e.g. `SIGNUPS_ALLOWED=False` which is really confusing and can lead to missconfigured public servers.
Normally, most common bool-ish string values like `1,0/yes,no/y,n/true,false/True,False` should be converted to a real bool while reading env variables.
@dani-garcia commented on GitHub (Jan 20, 2020):
Should be fixed in https://github.com/dani-garcia/bitwarden_rs/commit/d212dfe735e59128667a4c579e52ce7e86b53a94 now.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Originally created by @xoxys on GitHub (Jan 18, 2020).
Currently, uppercase bool values seems not to work e.g.
SIGNUPS_ALLOWED=Falsewhich is really confusing and can lead to missconfigured public servers.Normally, most common bool-ish string values like
1,0/yes,no/y,n/true,false/True,Falseshould be converted to a real bool while reading env variables.@dani-garcia commented on GitHub (Jan 20, 2020):
Should be fixed in https://github.com/dani-garcia/bitwarden_rs/commit/d212dfe735e59128667a4c579e52ce7e86b53a94 now.
@xoxys commented on GitHub (Jan 20, 2020):
Cool, looks nice. Thanks for the fast fix.