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 %}