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


##########
airflow/www/views.py:
##########
@@ -3331,7 +3331,7 @@ def grid_data(self):
             base_date = dag.get_latest_logical_date() or timezone.utcnow()
 
         with create_session() as session:
-            query = select(DagRun).where(DagRun.dag_id == dag.dag_id, 
DagRun.logical_date <= base_date)
+            query = select(DagRun).where(DagRun.dag_id == dag.dag_id, 
DagRun.run_after <= base_date)

Review Comment:
   Probably don’t change this. Not sure if we want to keep base_date (I threw a 
question to Brent and Pierre about this), but this needs to be re-implemented 
in new UI anyway, and we can figure things out there.



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

Reply via email to