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/'