Fixes: 1) Remove unnecessary wildcard imports in settings files; 2) Add missing imports for `getenv`, `DEBUG`, and other constants; 3) Fix logger usage in middleware to align with `django.request`. Extra: 1) Refactor settings files for readability and consistency; 2) Remove outdated `noqa` comments; 3) Minor formatting adjustments.
11 lines
245 B
Python
11 lines
245 B
Python
from evibes.settings.base import * # noqa: F403
|
|
|
|
GRAPH_MODELS = {
|
|
"all_applications": True,
|
|
"group_models": True,
|
|
}
|
|
|
|
EXTENSIONS_MAX_UNIQUE_QUERY_ATTEMPTS = 500
|
|
|
|
HEALTHCHECK_CELERY_RESULT_TIMEOUT = 5
|
|
HEALTHCHECK_CELERY_QUEUE_TIMEOUT = 5
|