You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by "Taragolis (via GitHub)" <gi...@apache.org> on 2023/02/20 21:45:50 UTC

[GitHub] [airflow] Taragolis commented on a diff in pull request #29195: Fixing Task Duration view in case of manual DAG runs only (#22015)

Taragolis commented on code in PR #29195:
URL: https://github.com/apache/airflow/pull/29195#discussion_r1112342301


##########
airflow/models/dag.py:
##########
@@ -112,6 +113,8 @@
 
 log = logging.getLogger(__name__)
 
+_T = TypeVar("_T")
+

Review Comment:
   ```suggestion
   ```



##########
airflow/models/dag.py:
##########
@@ -1534,6 +1540,8 @@ def get_task_instances(
             start_date = (timezone.utcnow() - timedelta(30)).replace(
                 hour=0, minute=0, second=0, microsecond=0
             )
+
+        print("=S=", start_date)

Review Comment:
   ```suggestion
   ```



##########
airflow/models/dag.py:
##########
@@ -43,6 +43,7 @@
     Iterator,
     List,
     Sequence,
+    TypeVar,

Review Comment:
   ```suggestion
   ```



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