zachliu commented on issue #8541:
URL: https://github.com/apache/airflow/issues/8541#issuecomment-919232720
in my case, on `composer 1.13.0 airflow 1.10.12`, this error occurs when i
use a for-loop:
```python
downstream_task_1 = SomeOperator()
downstream_task_2 = SomeOperator()
for i in range(x):
task = SomeOperator(
task_id=f"task_{i}"
)
task >> downstream_task_1 >> downstream_task_2
```
strangely, i had to
```python
downstream_task_1 = SomeOperator()
downstream_task_2 = SomeOperator()
for i in range(x):
task = SomeOperator(
task_id=f"task_{i}"
)
task >> downstream_task_1
downstream_task_1 >> downstream_task_2
```
otherwise downstream_task_2 will give me the nuke
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]