simple test DAG
This commit is contained in:
parent
4e6f4ee2fb
commit
6998573b79
|
@ -13,7 +13,7 @@ default_args = {
|
|||
'retry_delay': timedelta(minutes=5),
|
||||
}
|
||||
|
||||
dag = DAG('hello_world', default_args=default_args, schedule_interval=timedelta(days=1))
|
||||
dag = DAG('hello_world', default_args=default_args, schedule_interval=timedelta(days=1), catchup=False)
|
||||
|
||||
t1 = BashOperator(
|
||||
task_id='say_hello',
|
||||
|
|
Loading…
Reference in New Issue