From 000635ce3c34b50f9af40feabbf9585d50091cea Mon Sep 17 00:00:00 2001 From: Matt Bertrand Date: Tue, 19 Mar 2024 13:18:37 -0700 Subject: [PATCH] increase default retries to 3 --- odl_video/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/odl_video/settings.py b/odl_video/settings.py index f5d97f30..dc48d355 100644 --- a/odl_video/settings.py +++ b/odl_video/settings.py @@ -558,7 +558,7 @@ def get_all_config_keys(): PAGE_SIZE_VIDEOS = get_int("PAGE_SIZE_VIDEOS", 1000) MOIRA_CACHE_TIMEOUT = get_int("MOIRA_CACHE_TIMEOUT", 10800) -MOIRA_RETRIES = get_int("MOIRA_RETRIES", 2) +MOIRA_RETRIES = get_int("MOIRA_RETRIES", 3) HIJACK_ALLOW_GET_REQUESTS = True HIJACK_LOGOUT_REDIRECT_URL = "/admin/auth/user"