RNHTTR commented on issue #39801:
URL: https://github.com/apache/airflow/issues/39801#issuecomment-2131306606
Here's a slightly simpler reproduction without nested task groups or
branching:
```python
from airflow.decorators import dag, task, task_group
from pendulum import datetime
@dag(
start_date=datetime(2024, 1, 1),
schedule="@daily",
catchup=False,
doc_md=__doc__,
tags=["example"],
)
def repro():
@task
def init():
return ["seize", "the", "day"]
@task_group(group_id="tg")
def tg(message):
@task
def imsleepy(message):
return message
@task(trigger_rule="none_failed_min_one_success")
def imawake(message):
print(message)
imawake(imsleepy(message))
tg.expand(message=init())
repro()
```
--
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]