From 461f7cc88d91cf0a6b40a783d12e7abbc70899f3 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Tue, 24 Oct 2017 14:21:21 +0000 Subject: [PATCH] For some reason, stg greenwave has trouble talking to stg resultsdb. --- roles/openshift-apps/greenwave/templates/configmap.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/roles/openshift-apps/greenwave/templates/configmap.yml b/roles/openshift-apps/greenwave/templates/configmap.yml index a4f92ce258..09f2aaf399 100644 --- a/roles/openshift-apps/greenwave/templates/configmap.yml +++ b/roles/openshift-apps/greenwave/templates/configmap.yml @@ -14,7 +14,10 @@ data: {% if env == 'staging' %} SECRET_KEY = '{{stg_greenwave_secret_key}}' WAIVERDB_API_URL = 'https://waiverdb-web-waiverdb.app.os.stg.fedoraproject.org/api/v1.0' - RESULTSDB_API_URL = 'https://taskotron.stg.fedoraproject.org/resultsdb_api/api/v2.0' + # For some reason, stg greenwave has trouble talking to stg resultsdb. It + # times out. Network? + RESULTSDB_API_URL = 'https://taskotron.fedoraproject.org/resultsdb_api/api/v2.0' + #RESULTSDB_API_URL = 'https://taskotron.stg.fedoraproject.org/resultsdb_api/api/v2.0' CORS_URL = 'https://bodhi.stg.fedoraproject.org' {% else %} SECRET_KEY = '{{prod_greenwave_secret_key}}'