Skip to content

Commit

Permalink
fix: CQDG-719 replace hard coded ES URL
Browse files Browse the repository at this point in the history
  • Loading branch information
adipaul1981 committed Aug 28, 2024
1 parent 44eba01 commit 5b84789
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dags/etl_publish.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

def publish_task(job_types: str):
return etl_publish_config.args(
'-n', 'https://search-workers.qa.juno.cqdg.ferlab.bio',
'-n', es_url,
'-p', es_port,
'-r', release_id,
'-j', job_types,
Expand Down
2 changes: 1 addition & 1 deletion dags/etl_publish_variants.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

def publish_task(job_types: str):
return etl_publish_config.args(
'-n', 'https://search-workers.qa.juno.cqdg.ferlab.bio',
'-n', es_url,
'-p', es_port,
'-r', release_id,
'-j', job_types) \
Expand Down

0 comments on commit 5b84789

Please sign in to comment.