rabbitmq: Connect to rabbitmq via 127.0.0.1 rather than localhost.

This should eliminate the occasional problems that some installations
have had with RabbitMQ trying to load-balance requests between
127.0.0.1 and ::1 (the ipv6 version of localhost).
This commit is contained in:
Tim Abbott 2018-04-01 16:08:04 -07:00
parent ad066ca444
commit af004fa6f5
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ DEFAULT_SETTINGS = {
# External service configuration
'CAMO_URI': '',
'MEMCACHED_LOCATION': '127.0.0.1:11211',
'RABBITMQ_HOST': 'localhost',
'RABBITMQ_HOST': '127.0.0.1',
'RABBITMQ_USERNAME': 'zulip',
'REDIS_HOST': '127.0.0.1',
'REDIS_PORT': 6379,