From c9774893a93190c442d568e36995b1ca34e0114a Mon Sep 17 00:00:00 2001 From: Sandon Van Ness Date: Fri, 25 Oct 2013 13:14:21 -0700 Subject: [PATCH] Use worker httpd instead of prefork (like ubuntu) on rpm distros. Ubuntu's default apache uses worker instead of prefork like rpm based distro's. If rpm use httpd.worker instead of httpd so that the -X behavior will not be blocked by a single request. Signed-off-by: Sandon Van Ness --- teuthology/task/rgw.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/task/rgw.py b/teuthology/task/rgw.py index fded6aa3d5..50ec0300c6 100644 --- a/teuthology/task/rgw.py +++ b/teuthology/task/rgw.py @@ -221,7 +221,7 @@ def start_apache(ctx, config): if system_type == 'deb': apache_name = 'apache2' else: - apache_name = '/usr/sbin/httpd' + apache_name = '/usr/sbin/httpd.worker' proc = remote.run( args=[ 'adjust-ulimits', -- 2.39.5