Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions openedx/envs/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ################################
Expand Down Expand Up @@ -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
Expand Down
Loading