From 1e6851edb826f85369307416a2ea372ad4d07032 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Fri, 9 Feb 2024 10:09:18 -0800 Subject: [PATCH] koji_hub: switch back to prefork for now So, turns out the move volume problems I have been running into may well be related to threading. So, move back to prefork to see if I can get some moves done. Upstream koji is working on fixes, so we may be able to switch back once those land. Signed-off-by: Kevin Fenzi --- roles/koji_hub/files/00-mpm.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/koji_hub/files/00-mpm.conf b/roles/koji_hub/files/00-mpm.conf index 18c219a401..3999b88836 100644 --- a/roles/koji_hub/files/00-mpm.conf +++ b/roles/koji_hub/files/00-mpm.conf @@ -3,13 +3,13 @@ # prefork MPM: Implements a non-threaded, pre-forking web server # See: http://httpd.apache.org/docs/2.4/mod/prefork.html -#LoadModule mpm_prefork_module modules/mod_mpm_prefork.so +LoadModule mpm_prefork_module modules/mod_mpm_prefork.so # worker MPM: Multi-Processing Module implementing a hybrid # multi-threaded multi-process web server # See: http://httpd.apache.org/docs/2.4/mod/worker.html # -LoadModule mpm_worker_module modules/mod_mpm_worker.so +#LoadModule mpm_worker_module modules/mod_mpm_worker.so # event MPM: A variant of the worker MPM with the goal of consuming # threads only for connections with active processing