From 95605fa454b4bafcf5ac4013331959f76873a5a1 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Wed, 15 Feb 2017 20:47:01 +0000 Subject: [PATCH] Tell MBS to not try and obtain a token from PDC (no need). --- roles/mbs/common/templates/config.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/roles/mbs/common/templates/config.py b/roles/mbs/common/templates/config.py index d245d456d0..fb6bb81082 100644 --- a/roles/mbs/common/templates/config.py +++ b/roles/mbs/common/templates/config.py @@ -98,8 +98,10 @@ class ProdConfiguration(BaseConfiguration): LOG_LEVEL = 'debug' LOG_BACKEND = 'console' + # Yes, use tls. PDC_INSECURE = False - PDC_DEVELOP = False + # No, don't try to obtain a token (we just read. we don't write.) + PDC_DEVELOP = True KOJI_CONFIG = path.join(confdir, 'koji.conf') {% if env == 'staging' %}