Fix options for elasticsearch client tests

This commit is contained in:
Brandon Myers 2018-09-07 14:42:12 -05:00
Родитель d4277a620c
Коммит b450ec0fdb
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 8AA79AD83045BBC7
1 изменённых файлов: 1 добавлений и 4 удалений

Просмотреть файл

@ -11,9 +11,6 @@ import sys
sys.path.append(os.path.join(os.path.dirname(__file__), "../../lib"))
from query_models import SearchQuery, TermMatch, Aggregation, ExistsMatch
sys.path.append(os.path.join(os.path.dirname(__file__), "../../alerts/lib"))
from config import ES
sys.path.append(os.path.join(os.path.dirname(__file__), "../"))
from unit_test_suite import UnitTestSuite
@ -27,7 +24,7 @@ import pytest
class ElasticsearchClientTest(UnitTestSuite):
def setup(self):
super(ElasticsearchClientTest, self).setup()
self.es_client = ElasticsearchClient(ES['servers'], bulk_refresh_time=3)
self.es_client = ElasticsearchClient(self.options.esservers, bulk_refresh_time=3)
def get_num_events(self):
self.flush('events')