BasPH commented on issue #4666: [AIRFLOW-3823] Exclude BranchPythonOperator choice's downstream tasks from the tasks to skip URL: https://github.com/apache/airflow/pull/4666#issuecomment-462450796 Thinking out loud: I remember seeing the exact same test failing while developing. It was on Python 2 only, because I did a string comparison `if isinstance(branch, str):` (https://github.com/apache/airflow/blob/v1-10-test/airflow/operators/python_operator.py#L133), which I then replaced by `if isinstance(branch, six.string_types):`. Not sure why it's failing right now.
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
