From 169675bb8ee49a1049895f0d7b952dc159a8ef54 Mon Sep 17 00:00:00 2001 From: Tim Flink Date: Tue, 26 Apr 2016 19:25:09 +0000 Subject: [PATCH] changing stg blockerbugs to use prod bz/bodhi as a datasource for testing --- roles/blockerbugs/templates/blockerbugs-settings.py.j2 | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/roles/blockerbugs/templates/blockerbugs-settings.py.j2 b/roles/blockerbugs/templates/blockerbugs-settings.py.j2 index 12417d1279..7ceceeaee1 100644 --- a/roles/blockerbugs/templates/blockerbugs-settings.py.j2 +++ b/roles/blockerbugs/templates/blockerbugs-settings.py.j2 @@ -7,8 +7,12 @@ FAS_PASSWORD = "{{ blockerbugs_fas_password }}" FAS_FLASK_COOKIE_REQUIRES_HTTPS = False FAS_CHECK_CERT = False PRODUCTION = False -BUGZILLA_URL = 'https://partner-bugzilla.redhat.com/' -BODHI_URL = 'https://bodhi.stg.fedoraproject.org/' +# maybe this should be pointing at staging but that makes +# the app really difficult to test because the data is so old +#BUGZILLA_URL = 'https://partner-bugzilla.redhat.com/' +#BODHI_URL = 'https://bodhi.stg.fedoraproject.org/' +BUGZILLA_URL = 'https://bugzilla.redhat.com/' +BODHI_URL = 'https://admin.fedoraproject.org/updates/' {% else %} BUGZILLA_URL = 'https://bugzilla.redhat.com/' BODHI_URL = 'https://admin.fedoraproject.org/updates/'