Skip to content

Commit

Permalink
Merge pull request #207 from cityofaustin/ch-traffic-incidents-schedule
Browse files Browse the repository at this point in the history
Increase traffic incidents frequency to every 3 minutes
  • Loading branch information
Charlie-Henry authored Feb 9, 2024
2 parents 280bdd8 + f8c1f45 commit cbfabb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dags/atd_traffic_incident_reports.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
dag_id="atd_traffic_incident_reports",
description="wrapper etl for atd-traffic-incident-reports docker image connects to oracle db and updates postrgrest and socrata with incidents",
default_args=DEFAULT_ARGS,
schedule_interval="*/5 * * * *" if DEPLOYMENT_ENVIRONMENT == "production" else None,
schedule_interval="*/3 * * * *" if DEPLOYMENT_ENVIRONMENT == "production" else None,
tags=["repo:atd-traffic-incident-reports", "postgrest", "socrata"],
catchup=False,
) as dag:
Expand Down

0 comments on commit cbfabb6

Please sign in to comment.