settings: Use bool-ish get_config on postgresql.missing_dictionaries.

This commit is contained in:
Alex Vandiver 2024-03-05 16:23:28 +00:00 committed by Tim Abbott
parent 0f70ab7679
commit 1cba83f9c5
1 changed files with 1 additions and 1 deletions

View File

@ -311,7 +311,7 @@ elif (
PASSWORD=get_secret("postgres_password"),
HOST="localhost",
)
POSTGRESQL_MISSING_DICTIONARIES = bool(get_config("postgresql", "missing_dictionaries", None))
POSTGRESQL_MISSING_DICTIONARIES = get_config("postgresql", "missing_dictionaries", False)
DEFAULT_AUTO_FIELD = "django.db.models.AutoField"