From b92fdb799f9bba9f57fdb29dad7027183dbdfdcf Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Tue, 18 Oct 2016 13:45:08 -0400 Subject: [PATCH 1/2] Add some config settings from the dev instance. --- config.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config.py b/config.py index a13b9ffb..bfe029ec 100644 --- a/config.py +++ b/config.py @@ -72,6 +72,9 @@ class DevConfiguration(BaseConfiguration): #FAS_PASSWORD = os.environ('FAS_PASSWORD') # you could store it here #FAS_PASSWORD = commands.getoutput('pass your_fas_password').strip() + LOG_LEVEL = 'debug' + KOJI_ARCHES = ['x86_64'] + class TestConfiguration(BaseConfiguration): LOG_BACKEND = 'console' LOG_LEVEL = 'debug' @@ -82,3 +85,6 @@ class TestConfiguration(BaseConfiguration): class ProdConfiguration(BaseConfiguration): FAS_USERNAME = 'TODO' #FAS_PASSWORD = 'another password' + + LOG_LEVEL = 'info' + KOJI_ARCHES = ['x86_64'] From 90990c319c31a80ae1abaee0794ecc8fe7e442a0 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Wed, 19 Oct 2016 09:09:31 -0400 Subject: [PATCH 2/2] Undo most of that based on PR review. --- config.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/config.py b/config.py index bfe029ec..1b02697e 100644 --- a/config.py +++ b/config.py @@ -72,7 +72,6 @@ class DevConfiguration(BaseConfiguration): #FAS_PASSWORD = os.environ('FAS_PASSWORD') # you could store it here #FAS_PASSWORD = commands.getoutput('pass your_fas_password').strip() - LOG_LEVEL = 'debug' KOJI_ARCHES = ['x86_64'] class TestConfiguration(BaseConfiguration): @@ -85,6 +84,3 @@ class TestConfiguration(BaseConfiguration): class ProdConfiguration(BaseConfiguration): FAS_USERNAME = 'TODO' #FAS_PASSWORD = 'another password' - - LOG_LEVEL = 'info' - KOJI_ARCHES = ['x86_64']