aewald2 opened a new issue #10661:
URL: https://github.com/apache/airflow/issues/10661


   **Apache Airflow version**: 1.10.9
   
   **What happened**: We set the execution_timeout set to 13 minutes, tasks 
will log that they are timing out at 13 minutes but are left hanging in run 
state.
   
   **What you expected to happen**: if it goes beyond max time set it will 
raise and fail.
   
   **How to reproduce it**: example code:
   
   default_args = {
       'owner': 'owner',
       'description': 'description',
       'depend_on_past': False,
       'start_date': datetime(2020, 3, 11, tzinfo=execution_tz),
       'retries': 1,
       'retry_delay': timedelta(minutes=2),
       'execution_timeout': timedelta(minutes=13)
   }
   
   dag = DAG(
       'task_name',
       default_args=default_args,
       schedule_interval='8/15 * * * *',
       catchup=False,
       dagrun_timeout=timedelta(minutes=14)
   )
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to