From d5b73b81a59755d42575e37630fa30c572de6216 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Bompard?= Date: Mon, 31 Aug 2020 19:12:29 +0200 Subject: [PATCH] Disable Fedora Messaging in Noggin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Aurélien Bompard --- roles/openshift-apps/noggin/templates/noggin.cfg.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/roles/openshift-apps/noggin/templates/noggin.cfg.py b/roles/openshift-apps/noggin/templates/noggin.cfg.py index 00107ffc4e..98dbbff737 100644 --- a/roles/openshift-apps/noggin/templates/noggin.cfg.py +++ b/roles/openshift-apps/noggin/templates/noggin.cfg.py @@ -2,9 +2,11 @@ # This is the config file for Noggin as intended to be used in OpenShift # + def from_file(path): return open(path, 'r').read().strip() + # Deployed to a subpath APPLICATION_ROOT = '/accounts/' @@ -38,3 +40,6 @@ SECRET_KEY = from_file('/etc/noggin-secrets/session').encode('utf-8') # Spam checking # BASSET_URL = None + +# Disable Fedora Messaging because it's not up in staging yet. +FEDORA_MESSAGING_ENABLED = False