mik-laj commented on a change in pull request #9473:
URL: https://github.com/apache/airflow/pull/9473#discussion_r447425987
##########
File path: airflow/api_connexion/endpoints/dag_run_endpoint.py
##########
@@ -70,10 +92,14 @@ def get_dag_runs(session, dag_id, start_date_gte=None,
start_date_lte=None,
# filter execution date
if execution_date_gte:
- query = query.filter(DagRun.execution_date >=
conn_parse_datetime(execution_date_gte))
+ query = query.filter(
+ DagRun.execution_date >= conn_parse_datetime(execution_date_gte)
Review comment:
Can you do a rebase? I would like to slowly finish this change.
----------------------------------------------------------------
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]