From 158b733be573af9d7447b58d3c752b5000cbdd15 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Tue, 14 Mar 2017 02:46:38 +0000 Subject: [PATCH] Up the limit here. --- roles/mbs/common/templates/config.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/roles/mbs/common/templates/config.py b/roles/mbs/common/templates/config.py index 4de31cbcdb..72594f3efc 100644 --- a/roles/mbs/common/templates/config.py +++ b/roles/mbs/common/templates/config.py @@ -145,6 +145,8 @@ class ProdConfiguration(BaseConfiguration): # If this is too long, we could change it to 'fm_' some day. DEFAULT_DIST_TAG_PREFIX = 'module_' + NUM_CONSECUTIVE_BUILDS = 15 + # These aren't really secret. OIDC_CLIENT_SECRETS = path.join(confdir, 'client_secrets.json') OIDC_REQUIRED_SCOPE = 'https://mbs.fedoraproject.org/oidc/submit-build'