eladkal commented on a change in pull request #18471:
URL: https://github.com/apache/airflow/pull/18471#discussion_r716037615
##########
File path: airflow/operators/python.py
##########
@@ -178,6 +178,19 @@ class BranchPythonOperator(PythonOperator, SkipMixin):
def execute(self, context: Dict):
branch = super().execute(context)
+ # TODO: The logic should be moved to SkipMixin to be available to all
branch operators.
+ if isinstance(branch, str):
Review comment:
Seperate PR.
I will work on it. We want also to change the functionality so it will
accept None and skip all downstream tasks (untill a junction/join task).
--
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]