potiuk commented on a change in pull request #18471:
URL: https://github.com/apache/airflow/pull/18471#discussion_r716030104
##########
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:
Should we also change SkipMixin while we are changing it ? (see the
comment above)
--
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]