You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2022/04/25 05:37:50 UTC

[GitHub] [airflow] uranusjr commented on a diff in pull request #23181: Fix tasks being wrongly skipped by schedule_after_task_execution

uranusjr commented on code in PR #23181:
URL: https://github.com/apache/airflow/pull/23181#discussion_r857270875


##########
airflow/models/dag.py:
##########
@@ -1984,15 +1987,18 @@ def partial_subset(
                 also_include.extend(t.get_flat_relatives(upstream=False))
             if include_upstream:
                 also_include.extend(t.get_flat_relatives(upstream=True))
-            elif include_direct_upstream:
+
+        direct_upstream: List[Operator] = []

Review Comment:
   ```suggestion
           direct_upstreams: List[Operator] = []
   ```



-- 
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: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org