Skip to content

Commit

Permalink
Being particular in how this is lined up
Browse files Browse the repository at this point in the history
  • Loading branch information
frankhereford committed Jan 3, 2024
1 parent a4c42bf commit da545f9
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions dags/vz_cr3_extract_ocr_narrative.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,15 @@
},
}

# fmt: off
with DAG(
dag_id=f"vz_cr3_ocr_narrative_extract_{DEPLOYMENT_ENVIRONMENT}",
default_args=default_args,
# Every 5 minutes, at 8A, 9A, and 10A
schedule_interval="*/20 * * * *"
if DEPLOYMENT_ENVIRONMENT == "production"
else None,
schedule_interval="*/20 * * * *" if DEPLOYMENT_ENVIRONMENT == "production" else None,
tags=["repo:atd-vz-data", "vision-zero"],
catchup=False,
) as dag:
# fmt: on

@task(
task_id="get_env_vars",
Expand Down

0 comments on commit da545f9

Please sign in to comment.