Skip to content

Commit

Permalink
temporarily set catchup = True
Browse files Browse the repository at this point in the history
  • Loading branch information
charlielewisme committed Jan 26, 2024
1 parent bac563f commit b9ebc5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion airflow/dags/polygonetl_airflow/build_parse_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def build_parse_dag(

dag = models.DAG(
dag_id,
catchup=False,
catchup=True,
schedule=parse_schedule,
default_args=default_dag_args)

Expand Down
2 changes: 1 addition & 1 deletion airflow/dags/polygonetl_airflow/build_partition_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def build_partition_dag(
# Define a DAG (directed acyclic graph) of tasks.
dag = models.DAG(
dag_id,
catchup=False,
catchup=True,
schedule=partition_schedule,
default_args=default_dag_args)

Expand Down

0 comments on commit b9ebc5c

Please sign in to comment.