Skip to content

Commit

Permalink
change ES address to pull from config
Browse files Browse the repository at this point in the history
  • Loading branch information
alemsh committed Nov 23, 2024
1 parent 2c56d80 commit ce67c62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/progress_to_es.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def main():

logging.basicConfig(level=getattr(logging, args.log_level.upper()), format='%(asctime)s %(levelname)s %(name)s : %(message)s')

es_api = ClientCredentialsAuth(address='https://elasticsearch.icecube.aq',
es_api = ClientCredentialsAuth(address=config['ES_ADDRESS'],
token_url=args.token_url,
client_secret=args.es_client_secret,
client_id=args.es_client_id)
Expand Down

0 comments on commit ce67c62

Please sign in to comment.