Skip to content

Commit

Permalink
fix: in tests, use es6 url from settings
Browse files Browse the repository at this point in the history
  • Loading branch information
aaxelb committed Aug 29, 2024
1 parent f09940a commit c5b5881
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/base/settings/defaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@
# django-elasticsearch-metrics
ELASTICSEARCH_DSL = {
'default': {
'hosts': os.environ.get('ELASTIC6_URI', '127.0.0.1:9201'),
'hosts': osf_settings.ELASTIC6_URI,
'retry_on_timeout': True,
},
}
Expand Down
2 changes: 1 addition & 1 deletion conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def _test_speedups_disable(request, settings, _test_speedups):

@pytest.fixture(scope='session')
def setup_connections():
connections.create_connection(hosts=['http://localhost:9201'])
connections.create_connection(hosts=[website_settings.ELASTIC6_URI])


@pytest.fixture(scope='function')
Expand Down
1 change: 1 addition & 0 deletions website/settings/defaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ def parent_dir(path):
# 'client_cert': None,
# 'client_key': None
}
ELASTIC6_URI = os.environ.get('ELASTIC6_URI', '127.0.0.1:9201')

# Sessions
COOKIE_NAME = 'osf'
Expand Down

0 comments on commit c5b5881

Please sign in to comment.