Skip to content

Commit

Permalink
Unrelated fix for new location of indexing records
Browse files Browse the repository at this point in the history
  • Loading branch information
carlvitzthum committed May 7, 2018
1 parent e8b8997 commit 14cd8ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chalicelib/system_checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def indexing_progress(connection, **kwargs):
@check_function()
def indexing_records(connection, **kwargs):
check = init_check_res(connection, 'indexing_records')
record_location = ''.join([connection.es, 'meta/meta/_search?q=_exists_:indexing_status&size=1000&sort=uuid:desc'])
record_location = ''.join([connection.es, 'indexing/indexing/_search?q=_exists_:indexing_status&size=1000&sort=uuid:desc'])
es_resp = requests.get(record_location, timeout=20)
if es_resp.status_code >= 400:
check.status = 'ERROR'
Expand Down

0 comments on commit 14cd8ef

Please sign in to comment.