Skip to content

Commit

Permalink
switch schedule to weekly
Browse files Browse the repository at this point in the history
  • Loading branch information
adlersantos committed May 12, 2022
1 parent 195bb49 commit d63b03c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@
default_args = {
"owner": "Google",
"depends_on_past": False,
"start_date": "2022-03-22",
"start_date": "2022-05-01",
}


with DAG(
dag_id="scalable_open_source.copy_deps_dev_bq_dataset",
default_args=default_args,
max_active_runs=1,
schedule_interval="@daily",
schedule_interval="@weekly",
catchup=False,
default_view="graph",
) as dag:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ dag:
default_args:
owner: "Google"
depends_on_past: False
start_date: '2022-03-22'
start_date: '2022-05-01'
max_active_runs: 1
schedule_interval: "@daily"
schedule_interval: "@weekly"
catchup: False
default_view: graph

Expand Down

0 comments on commit d63b03c

Please sign in to comment.