From 203684823fbab0c97dd8cf5491028c19979c5378 Mon Sep 17 00:00:00 2001 From: mprahl Date: Fri, 28 Jun 2019 18:36:46 +0000 Subject: [PATCH] Remove the NUM_CONCURRENT_BUILDS limit in MBS --- roles/mbs/common/templates/config.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/roles/mbs/common/templates/config.py b/roles/mbs/common/templates/config.py index 52f478c566..4eec1e18a9 100644 --- a/roles/mbs/common/templates/config.py +++ b/roles/mbs/common/templates/config.py @@ -41,13 +41,6 @@ class BaseConfiguration(object): # Set to zero to disable polling POLLING_INTERVAL = 3600 - # Determines how many builds that can be submitted to the builder - # and be in the build state at a time. Set this to 0 for no restrictions - # New name - NUM_CONCURRENT_BUILDS = 5 - # Old name https://pagure.io/fm-orchestrator/issue/574 - NUM_CONSECUTIVE_BUILDS = 5 - RPMS_DEFAULT_REPOSITORY = 'git+https://src.fedoraproject.org/rpms/' RPMS_ALLOW_REPOSITORY = False RPMS_DEFAULT_CACHE = 'https://src.fedoraproject.org/repo/pkgs/' @@ -187,9 +180,6 @@ class ProdConfiguration(BaseConfiguration): # If this is too long, we could change it to 'fm_' some day. DEFAULT_DIST_TAG_PREFIX = 'module_' - # New name - NUM_CONCURRENT_BUILDS = 100 - # Delete module-* targets one hour after build KOJI_TARGET_DELETE_TIME = 3600