diff --git a/openedx/envs/common.py b/openedx/envs/common.py index 31b0015d34d9..a6276a2e54e0 100644 --- a/openedx/envs/common.py +++ b/openedx/envs/common.py @@ -1533,6 +1533,8 @@ def add_optional_apps(optional_apps, installed_apps): # For more information, check https://github.com/openedx/edx-platform/pull/13388 and # https://github.com/openedx/edx-platform/pull/14571. TASK_MAX_RETRIES=5, + + STORAGE_CLASS=None, # Resolved to default storage. ) ################################ Bulk Email ################################ @@ -2159,9 +2161,14 @@ def add_optional_apps(optional_apps, installed_apps): LEARNER_PROGRESS_PROMPT_FOR_ACTIVE_CONTRACT = '' LEARNER_PROGRESS_PROMPT_FOR_NON_ACTIVE_CONTRACT = '' +########################## SWAGGER & OPEN API ############################### + # How long to cache OpenAPI schemas and UI, in seconds. OPENAPI_CACHE_TIMEOUT = 60 * 60 +# Silences a Swagger (API docs) depr warning that doesn't apply to us. +SWAGGER_USE_COMPAT_RENDERERS = False + ################################### AWS #################################### AWS_QUERYSTRING_AUTH = True