From 0793a1e9b3a578ea107f7215e868fa8000680f03 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Thu, 25 Mar 2021 21:07:59 +0100 Subject: [PATCH] copr-be-dev: increase quota for one user Nobody is using devel stack except for Copr Team, and we run heavily parallelized unit tests so we enjoy more concurrent VMs. In case there are no task processed, the VM count anyways goes down to the setup in pool.yaml. So this change actually doesn't mean more VMs is going to be wasted in normal situations. --- 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 a7d5a54b05..ba67a34907 100644 --- a/roles/copr/backend/templates/copr-be.conf.j2 +++ b/roles/copr/backend/templates/copr-be.conf.j2 @@ -50,7 +50,7 @@ builds_max_workers_arch= {% if env == 'production' %} builds_max_workers_owner=25 {% elif devel %} -builds_max_workers_owner=6 +builds_max_workers_owner=15 {% else %} builds_max_workers_owner=0 {% endif %}