Fix:added none to lastupdated Date if event is not in queue#54652
Merged
kaxil merged 6 commits intoSep 19, 2025
Conversation
pierrejeambrun
approved these changes
Sep 2, 2025
pierrejeambrun
left a comment
Member
There was a problem hiding this comment.
Thanks.
One nit, looking good otherwise.
b6adbcd to
1df9592
Compare
Contributor
|
static tests are failing |
eladkal
approved these changes
Sep 10, 2025
Lee-W
approved these changes
Sep 11, 2025
eladkal
reviewed
Sep 12, 2025
00c59f0 to
60576cb
Compare
f344804 to
9d17010
Compare
9d17010 to
a3ff29b
Compare
Member
|
Static check failed |
eladkal
reviewed
Sep 19, 2025
Contributor
|
Should pass the static checks now |
pierrejeambrun
approved these changes
Sep 19, 2025
pierrejeambrun
left a comment
Member
There was a problem hiding this comment.
LGTM, ready to merge when CI is happy.
kaxil
pushed a commit
that referenced
this pull request
Sep 19, 2025
KatalKavya96
pushed a commit
to KatalKavya96/airflow
that referenced
this pull request
Sep 22, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
closes: #53817
Summary of changes:
Display logic for "X of Y assets":
Y = total assets relevant to the DAG's asset_expression.
X = assets with lastUpdate > latestRunAfter (i.e., new events since last DAG run).
Introduced SQL-based computation of each asset’s "queued" status using a LEFT JOIN + MAX(CASE) approach.
Grouped and normalized the data so:
Non-queued assets have lastUpdate = None.
The internal queued field is removed from the final response payload for clarity.