From 045856c0914ca303dbbd445b377bbc24580fbe84 Mon Sep 17 00:00:00 2001 From: Cristhian Garcia Date: Wed, 4 Sep 2024 19:29:31 -0500 Subject: [PATCH] fix: disable logging and increase threads --- drydock/patches/openedx-common-settings | 2 +- drydock/patches/uwsgi-config | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/drydock/patches/openedx-common-settings b/drydock/patches/openedx-common-settings index 2da9a169..be9525ee 100644 --- a/drydock/patches/openedx-common-settings +++ b/drydock/patches/openedx-common-settings @@ -20,4 +20,4 @@ XBLOCK_SETTINGS["ScormXBlock"] = { {% endif %} LOGGING.get("loggers", {}).pop("tracking") -LOGGING.get("loggers", {}).pop("local") +LOGGING["loggers"][""]["handlers"] = ["console"] diff --git a/drydock/patches/uwsgi-config b/drydock/patches/uwsgi-config index c5c8ee5c..4d66d6bb 100644 --- a/drydock/patches/uwsgi-config +++ b/drydock/patches/uwsgi-config @@ -13,3 +13,5 @@ master = true py-call-osafterfork = true vacuum = true hook-master-start = unix_signal:1 gracefully_kill_them_all +threads = 16 +disable-logging = true