From f7b3da54b0c7bb4ed2cf5bc0b78d11bccdb69de9 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Thu, 24 Nov 2022 18:35:55 +0100 Subject: [PATCH] copr-fe: typo in dev vs. prod --- roles/copr/frontend/templates/httpd/coprs.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/copr/frontend/templates/httpd/coprs.conf b/roles/copr/frontend/templates/httpd/coprs.conf index 4b81f4db7c..ebf6cfd472 100644 --- a/roles/copr/frontend/templates/httpd/coprs.conf +++ b/roles/copr/frontend/templates/httpd/coprs.conf @@ -4,9 +4,9 @@ Alias "/db_dumps/" "/var/www/html/db_dumps/" {%- macro develizer(processes, threads) %} {% if devel %} -processes={{ processes }} threads={{ threads }} -{%- else %} processes=1 threads={{ (threads/2) |int}} +{%- else %} +processes={{ processes }} threads={{ threads }} {%- endif %} {%- endmacro %}