From b7b595c7656498f0506814627b5ecaf0f53597b4 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Sat, 9 Aug 2014 13:12:20 +0000 Subject: [PATCH] Fully turn off the backlog stuff in staging. Sorry pingou... :( --- roles/fedmsg/base/templates/base.py.j2 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/roles/fedmsg/base/templates/base.py.j2 b/roles/fedmsg/base/templates/base.py.j2 index a7dd5c2be8..b658188b19 100644 --- a/roles/fedmsg/base/templates/base.py.j2 +++ b/roles/fedmsg/base/templates/base.py.j2 @@ -11,7 +11,12 @@ config = dict( # These options provide a place for hub processes to write out their last # processed message. This let's them read it in at startup and figure out # what kind of backlog they have to deal with. + {% if env == 'staging' %} + # But we have it turned off in staging. + #status_directory="/var/run/fedmsg/status", + {% else %} status_directory="/var/run/fedmsg/status", + {% endif %} # This is the URL of a datagrepper instance that we can query for backlog. {% if env == 'staging' %}