You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by "Maciej Z (JIRA)" <ji...@apache.org> on 2017/07/17 15:05:00 UTC

[jira] [Created] (AIRFLOW-1420) Dag fails, but none of tasks has failed

Maciej Z created AIRFLOW-1420:
---------------------------------

             Summary: Dag fails, but none of tasks has failed
                 Key: AIRFLOW-1420
                 URL: https://issues.apache.org/jira/browse/AIRFLOW-1420
             Project: Apache Airflow
          Issue Type: Bug
            Reporter: Maciej Z


Here's the code:

{noformat}
# -*- coding: utf-8 -*-
from airflow.operators.dummy_operator import DummyOperator
from airflow.models import DAG
from datetime import date, datetime, timedelta

day_ago = datetime.combine(datetime.today() - timedelta(1), datetime.min.time())
args = {'owner': 'airflow',  'start_date': day_ago,}

dag = DAG(dag_id='not_running_dummy2_test', default_args=args, schedule_interval='00 * * * *',  dagrun_timeout=timedelta(hours=12))
DummyOperator(task_id='a', dag=dag)  >>  DummyOperator(task_id='b', dag=dag, trigger_rule='one_failed')

if __name__ == "__main__":
    dag.cli()
{noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)