MolochkoVitaly opened a new issue #13101:
URL: https://github.com/apache/airflow/issues/13101
<!--
Welcome to Apache Airflow! For a smooth issue process, try to answer the
following questions.
Don't worry if they're not all applicable; just try to include what you can
:-)
If you need to include code snippets or logs, please put them in fenced code
blocks. If they're super-long, please use the details tag like
<details><summary>super-long log</summary> lots of stuff </details>
Please delete these comment blocks before submitting the issue.
-->
<!--
IMPORTANT!!!
PLEASE CHECK "SIMILAR TO X EXISTING ISSUES" OPTION IF VISIBLE
NEXT TO "SUBMIT NEW ISSUE" BUTTON!!!
PLEASE CHECK IF THIS ISSUE HAS BEEN REPORTED PREVIOUSLY USING SEARCH!!!
Please complete the next sections or the issue will be closed.
These questions are the first thing we need to know to understand the
context.
-->
**Apache Airflow version**: 1.10.10
**What happened**:
```
from airflow.operators.dummy_operator import DummyOperator
from airflow import DAG
from datetime import datetime
default_args = {
'start_date': datetime(2021, 1, 1),
'owner': 'airflow'
}
dag = DAG('dummy_dag', default_args=default_args)
op1 = DummyOperator(task_id="op1", dag=dag)
op2 = DummyOperator(task_id="op2", dag=dag)
op3 = DummyOperator(task_id="op3", dag=dag)
op4 = DummyOperator(task_id="op4", dag=dag)
op5 = DummyOperator(task_id="op5", dag=dag)
op1 >> [op2, op3 >> op4] >> op5
```

<!-- (please include exact error messages if you can) -->
**What you expected to happen**:

**How to reproduce it**:
Run code above
----------------------------------------------------------------
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]