From 65c5355c9f858e4c8f62366522622d7b30121099 Mon Sep 17 00:00:00 2001 From: Bryan Wilson Date: Fri, 14 Jul 2023 10:47:03 -0700 Subject: [PATCH] Increase YouTube TEST_TIMEOUT to 2.5s (setTimeout length testing if YT API is ready) Another attempt to fix ENG-97 --- openedx/core/djangoapps/appsembler/settings/settings/common.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/openedx/core/djangoapps/appsembler/settings/settings/common.py b/openedx/core/djangoapps/appsembler/settings/settings/common.py index b3b06fe77268..1eb9a34bad88 100644 --- a/openedx/core/djangoapps/appsembler/settings/settings/common.py +++ b/openedx/core/djangoapps/appsembler/settings/settings/common.py @@ -89,3 +89,6 @@ def plugin_settings(settings): # Off by default. See the `site_configuration.tahoe_organization_helpers.py` module. settings.FEATURES['TAHOE_SITE_CONFIG_CLIENT_ORGANIZATIONS_SUPPORT'] = False + + # Give a little more time for YT API to load in video_module (default was 1500 ms) + settings.YOUTUBE['TEST_TIMEOUT'] = 2500