From e91c213e496475f058719ea08ba640f95d494b7f Mon Sep 17 00:00:00 2001 From: Anna Scholtz Date: Tue, 23 Aug 2022 13:19:52 -0700 Subject: [PATCH] Use bqetl CLI command to publish static files --- dags/publish_bqetl_static.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dags/publish_bqetl_static.py b/dags/publish_bqetl_static.py index 82d97521d..0158f9ed3 100644 --- a/dags/publish_bqetl_static.py +++ b/dags/publish_bqetl_static.py @@ -1,7 +1,7 @@ """ Daily deployment of static bigquery-etl data to various projects. -See the publish script [here](https://github.com/mozilla/bigquery-etl/blob/main/bigquery_etl/publish_static.py). +See the publish command [here](https://github.com/mozilla/bigquery-etl/blob/main/bigquery_etl/static/__init__.py). """ from airflow import DAG @@ -38,7 +38,7 @@ publish_static_mozdata = gke_command( task_id="publish_static_mozdata", command=[ - "script/publish_static", + "script/bqetl", "static", "publish", "--project_id", "mozdata" ], docker_image=IMAGE, @@ -47,7 +47,7 @@ publish_static_shared_prod = gke_command( task_id="publish_static_shared_prod", command=[ - "script/publish_static", + "script/bqetl", "static", "publish", "--project_id", "moz-fx-data-shared-prod" ], docker_image=IMAGE,