From a048feb1ea6ad83b4a83addbace6410b0f5960bd Mon Sep 17 00:00:00 2001 From: Michal Konecny Date: Thu, 11 Jul 2024 10:03:49 +0200 Subject: [PATCH] [mailman3] Fix mailmanweb not starting Remove the `--log-level=debug` as this is causing failure when starting mailmanweb service. Signed-off-by: Michal Konecny --- roles/mailman3/templates/mailmanweb.service.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/mailman3/templates/mailmanweb.service.j2 b/roles/mailman3/templates/mailmanweb.service.j2 index 5c7a5ec7e9..ff45926468 100644 --- a/roles/mailman3/templates/mailmanweb.service.j2 +++ b/roles/mailman3/templates/mailmanweb.service.j2 @@ -11,5 +11,5 @@ Type=simple User=mailman Group=mailman WorkingDirectory=/etc/mailman3 -ExecStart=/usr/bin/gunicorn --max-requests 50000 --timeout 1000 --workers={{ mailman_gunicorn_workers }} --log-devel=debug --forwarded-allow-ips="*" mailman_web.wsgi +ExecStart=/usr/bin/gunicorn --max-requests 50000 --timeout 1000 --workers={{ mailman_gunicorn_workers }} --forwarded-allow-ips="*" mailman_web.wsgi ExecStop=/bin/kill -s TERM $MAINPID