Skip to content

Commit

Permalink
Remove off looking start-date value in example_dag yaml config (#273)
Browse files Browse the repository at this point in the history
The `example_dag` in the `example_dag_factory.yml` has a `start_date` 
value set to `2 days`, which seems unclear and problematic. It’s not
clear
what this value represents, and it appears to be causing issues with the
DAG, preventing it from running tasks. I confirmed this issue also
exists in
version `0.19.0`, so it’s not related to any changes made after that
version.
When I removed this questionable `start_date` value, the DAG ran its
tasks
successfully.

closes: #274
  • Loading branch information
pankajkoti authored Oct 22, 2024
1 parent a947aa8 commit 2f62442
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion dev/dags/example_dag_factory.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ default:
example_dag:
default_args:
owner: "custom_owner"
start_date: 2 days
description: "this is an example dag"
schedule_interval: "0 3 * * *"
render_template_as_native_obj: True
Expand Down

0 comments on commit 2f62442

Please sign in to comment.