From e75229b4d3e1d613adb946e351afca7b2e5ce22c Mon Sep 17 00:00:00 2001 From: "a.feteleu" Date: Wed, 30 Oct 2019 20:35:15 +0300 Subject: [PATCH] fix elastic settings --- project/settings/development.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/settings/development.py b/project/settings/development.py index b9f03146..a9cfe5be 100644 --- a/project/settings/development.py +++ b/project/settings/development.py @@ -19,8 +19,8 @@ DOMAIN_URI = 'gm.id-east.ru' # ELASTICSEARCH SETTINGS ELASTICSEARCH_DSL = { 'default': { - # 'hosts': 'localhost:9200' - 'hosts': 'elasticsearch:9200' + 'hosts': 'localhost:9200' + # 'hosts': 'elasticsearch:9200' } }