From 475bb3949e70ea5171b24d2a09de7f40c0021458 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Thu, 7 Aug 2014 15:37:37 +0000 Subject: [PATCH] Turn off fedmsg backlog loading in staging. --- roles/fedmsg/base/templates/base.py.j2 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/roles/fedmsg/base/templates/base.py.j2 b/roles/fedmsg/base/templates/base.py.j2 index 13c221db76..675d9ee70c 100644 --- a/roles/fedmsg/base/templates/base.py.j2 +++ b/roles/fedmsg/base/templates/base.py.j2 @@ -15,7 +15,8 @@ config = dict( # This is the URL of a datagrepper instance that we can query for backlog. {% if env == 'staging' %} - datagrepper_url="https://apps.stg.fedoraproject.org/datagrepper/raw", + # But we have it turned off in staging. + #datagrepper_url="https://apps.stg.fedoraproject.org/datagrepper/raw", {% else %} datagrepper_url="https://apps.fedoraproject.org/datagrepper/raw", {% endif %}