Skip to content

Commit

Permalink
using job-status_current alias in retry.py (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
DustinKLo authored Jul 18, 2023
1 parent 3f4083a commit d34be30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion retry.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def query_es(job_id):
}
}
}
return mozart_es.search(index=STATUS_ALIAS, body=query_json)
return mozart_es.search(index="job_status-current", body=query_json)


@backoff.on_exception(backoff.expo, Exception, max_tries=10, max_value=64)
Expand Down

0 comments on commit d34be30

Please sign in to comment.