Skip to content

Commit

Permalink
add start_date to perf dag
Browse files Browse the repository at this point in the history
  • Loading branch information
jlaneve committed Feb 1, 2024
1 parent 76c25a6 commit fa3c82c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dev/dags/performance_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"""

import airflow
from datetime import datetime
import os
from pathlib import Path

Expand All @@ -29,7 +30,7 @@
),
# normal dag parameters
schedule_interval=None,
start_date=None,
start_date=datetime(2024, 1, 1),
catchup=False,
dag_id="performance_dag",
)

0 comments on commit fa3c82c

Please sign in to comment.