Default ELASTIC_SEARCH_HOSTS to the host/docker name we use in production

Also removed some comments that didn't add any new information.
This commit is contained in:
Sybren A. Stüvel 2018-01-03 18:34:33 +01:00
parent f1b3409052
commit 520f327f5a

View File

@ -80,9 +80,8 @@ ALGOLIA_INDEX_NODES = 'dev_Nodes'
SEARCH_BACKENDS = ('algolia', 'elastic') # search backend we use SEARCH_BACKENDS = ('algolia', 'elastic') # search backend we use
ELASTIC_SEARCH_HOSTS = ['elasticsearch'] # elasticsearch hosts ELASTIC_SEARCH_HOSTS = ['elastic']
ELASTIC_INDICES = { ELASTIC_INDICES = {
# elasticsearch indexes
'NODE': 'nodes', 'NODE': 'nodes',
'USER': 'users', 'USER': 'users',
} }