JeffryMAC commented on issue #11234:
URL: https://github.com/apache/airflow/issues/11234#issuecomment-703300022
If you change
```
def task():
print('doing stuff inside task')
sys.exit(0)
```
to:
```
def task():
print('doing stuff inside task')
return
```
wouldn't that solve the issue?
----------------------------------------------------------------
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]