Uh oh!
There was an error while loading. Please reload this page.
Document the 409 from XCom create and drop a duplicated condition - #70992
Merged
bbovenzi merged 1 commit intoAug 4, 2026
Merged
Conversation
ColtenOuO
requested review from
bbovenzi, bugraoz93, choo121600, ephraimbuddy, guan404ming, henry3260, jason810496, pierrejeambrun, rawwar, ryanahamilton, shubhamraj-git and vatsrahul1001
as code ownersAugust 3, 2026 13:23
1 task
bbovenzi
approved these changes
Aug 4, 2026
Uh oh!
There was an error while loading. Please reload this page.
Contributor
Backport successfully created: v3-3-testNote: As of Merging PRs targeted for Airflow 3.X In matter of doubt please ask in #release-management Slack channel.
|
github-actionsBot
pushed a commit
to aws-mwaa/upstream-to-airflow
that referenced
this pull request
Aug 4, 2026
…ondition (apache#70992) (cherry picked from commit 64683c9) Co-authored-by: Jyun-An Chen <jun930436@gmail.com>
aws-airflow-bot pushed a commit
to aws-mwaa/upstream-to-airflow
that referenced
this pull request
Aug 4, 2026
…ondition (apache#70992) (cherry picked from commit 64683c9) Co-authored-by: Jyun-An Chen <jun930436@gmail.com>
dabla pushed a commit
to dabla/airflow
that referenced
this pull request
Aug 14, 2026
1 task
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 freeto 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.
Sumarry
Two small fixes to
POST /api/v2/dags/{dag_id}/dagRuns/{dag_run_id}/taskInstances/{task_id}/xcomEntries.The 409 was undocumented. The handler returns
409 Conflictwhen an XCom withthat key already exists for the task instance, but
create_openapi_http_exception_doconly declared
400and404. Clients generated from the spec therefore had nomodel for a status the endpoint really does return. Same class of fix as #67570
and #67571.
A duplicated condition. The Dag-run check was nested inside an identical copy of
itself:
Dead code, no behaviour change.
v2-rest-api-generated.yamlandui/openapi-gen/are regenerated from the changedresponses=declaration.