Vidhanvyrs commented on code in PR #34224:
URL: https://github.com/apache/airflow/pull/34224#discussion_r1320386963
##########
airflow/api_connexion/endpoints/event_log_endpoint.py:
##########
@@ -69,9 +69,11 @@ def get_event_logs(
"execution_date",
"owner",
"extra",
+ "run_id",
]
total_entries = session.scalars(func.count(Log.id)).one()
- query = select(Log)
+ run_id_alias = aliased(Log)
+ query = select(Log, run_id_alias.run_id.label("run_id"))
Review Comment:
hey @Taragolis I have just updated it but i was unable to commit it this
is what i got I tried to rebase and remove any coflicts if the branch had still
this error persuade
Need Help here
! [rejected] NewBranch34211 -> NewBranch34211
(non-fast-forward)
error: failed to push some refs to
'https://github.com/Vidhanvyrs/airflow.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Integrate the remote changes (e.g.
hint: 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
--
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]