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
On Windows, Python's os module always treats environment variables as case-insensitive,
so the case_sensitive config setting will have no effect - settings will always be updated ignoring case.
pydantic_core._pydantic_core.ValidationError: 1 validation error for Settings
redis
Field required [type=missing, input_value={}, input_type=dict]
For further information visit https://errors.pydantic.dev/2.7/v/missing
But it works if I set case_sensitive=False.
The text was updated successfully, but these errors were encountered:
According to the docs :
In my tests on windows 11:
works
works
does NOT work
works
The example given in the docs fails for me:
But it works if I set
case_sensitive=False
.The text was updated successfully, but these errors were encountered: