uranusjr commented on issue #19903:
URL: https://github.com/apache/airflow/issues/19903#issuecomment-1005849107
Actually there is a way to make this work under the current `@task_group`
functionality; you need to do this:
```python
@task_group
def do_all_things():
return [do_thing(1), do_thing(2)]
```
But this is totally not obvious and probably does not look nice, so #20671
is still useful.
--
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]