coleheflin commented on code in PR #64987:
URL: https://github.com/apache/airflow/pull/64987#discussion_r3064750591
##########
airflow-core/src/airflow/api_fastapi/core_api/routes/public/xcom.py:
##########
@@ -199,13 +217,11 @@ def get_xcom_entries(
logical_date_range,
run_after_range,
],
+ order_by=order_by,
offset=offset,
limit=limit,
session=session,
)
- query = query.order_by(
- XComModel.dag_id, XComModel.task_id, XComModel.run_id,
XComModel.map_index, XComModel.key
Review Comment:
task_id use to be included but is not included near line 171, is that
intended?
--
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]