mik-laj commented on a change in pull request #11391:
URL: https://github.com/apache/airflow/pull/11391#discussion_r508009471



##########
File path: airflow/models/skipmixin.py
##########
@@ -122,7 +121,8 @@ def skip_all_except(
         """
         self.log.info("Following branch %s", branch_task_ids)
         if isinstance(branch_task_ids, six.string_types):
-            branch_task_ids = [branch_task_ids]
+            branch_task_ids = {branch_task_ids}
+        branch_task_ids = set(branch_task_ids)

Review comment:
       Can you tell more about it?




----------------------------------------------------------------
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]


Reply via email to