From d0e12fef0c13f8eb5ce65c5cb2b565943e712313 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Wed, 25 Oct 2023 13:15:43 +0200 Subject: [PATCH] copr-be: Increase the worker allocation to 90 per owner This still doesn't mean that one project (= sandbox) can waste that many workers, we still keep the per/sandbox limit on 35. This change though drastically helps Packit which serves many users under a single owner (but multiple sandboxes). --- roles/copr/backend/templates/copr-be.conf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/copr/backend/templates/copr-be.conf.j2 b/roles/copr/backend/templates/copr-be.conf.j2 index fec96850fb..cc8ee677b1 100644 --- a/roles/copr/backend/templates/copr-be.conf.j2 +++ b/roles/copr/backend/templates/copr-be.conf.j2 @@ -56,7 +56,7 @@ builds_max_workers_arch= # Maximum number of concurrently running tasks per project owner. {% if env == 'production' %} -builds_max_workers_owner=45 +builds_max_workers_owner=90 {% elif devel %} builds_max_workers_owner=15 {% else %}