From 8b17aa21534612ab9dfa955b87d02c4842bd1baa Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Jun 18 2015 11:04:27 +0000 Subject: Replace the REDIS_EVENTSOURCE boolean by a EVENTSOURCE_SOURCE defaulting to None This configuration key aims at providing the location where the streaming server is running and accessible to pagure (for example: https://pagure.io:8080). --- diff --git a/pagure/default_config.py b/pagure/default_config.py index d89a6c5..d426f68 100644 --- a/pagure/default_config.py +++ b/pagure/default_config.py @@ -48,7 +48,7 @@ MAX_CONTENT_LENGTH = 4 * 1024 * 1024 # 4 megabytes IP_ALLOWED_INTERNAL = ['127.0.0.1', 'localhost', '::1'] # Redis configuration -REDIS_EVENTSOURCE = True +EVENTSOURCE_SOURCE = None REDIS_HOST = '0.0.0.0' REDIS_PORT = 6379 REDIS_DB = 0