diff options
author | 2018-05-30 23:03:45 +0100 | |
---|---|---|
committer | 2018-05-30 23:03:45 +0100 | |
commit | c7f9cfc2920d9cf58eda4779eca5985c3fabbd06 (patch) | |
tree | f2634862b7dcfefd54ada683abf8d26fe2065e42 /pysite/constants.py | |
parent | Attempt to fix travis build (diff) |
Switch constants around
Diffstat (limited to 'pysite/constants.py')
-rw-r--r-- | pysite/constants.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pysite/constants.py b/pysite/constants.py index 5c377300..bc2a3aa4 100644 --- a/pysite/constants.py +++ b/pysite/constants.py @@ -122,7 +122,7 @@ BOT_EVENT_QUEUE = "bot_events" RMQ_USERNAME = environ.get("RABBITMQ_DEFAULT_USER") or "guest" RMQ_PASSWORD = environ.get("RABBITMQ_DEFAULT_PASS") or "guest" -RMQ_HOST = "pdrmq" if not DEBUG_MODE else environ.get("RABBITMQ_HOST") or "localhost" +RMQ_HOST = "localhost" if DEBUG_MODE else environ.get("RABBITMQ_HOST") or "pdrmq" RMQ_PORT = 5672 # Channels |