From 520f327f5abfa4f3ff7d998644b39e8be9b5f484 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Wed, 3 Jan 2018 18:34:33 +0100 Subject: [PATCH] Default ELASTIC_SEARCH_HOSTS to the host/docker name we use in production Also removed some comments that didn't add any new information. --- pillar/config.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pillar/config.py b/pillar/config.py index 48d9e44e..63f89967 100644 --- a/pillar/config.py +++ b/pillar/config.py @@ -80,9 +80,8 @@ ALGOLIA_INDEX_NODES = 'dev_Nodes' SEARCH_BACKENDS = ('algolia', 'elastic') # search backend we use -ELASTIC_SEARCH_HOSTS = ['elasticsearch'] # elasticsearch hosts +ELASTIC_SEARCH_HOSTS = ['elastic'] ELASTIC_INDICES = { - # elasticsearch indexes 'NODE': 'nodes', 'USER': 'users', }