Fix misspelled variable in CI migration test DB manager export - #71334
Merged
henry3260 merged 1 commit intoAug 8, 2026
Merged
Conversation
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-actions Bot
pushed a commit
to aws-mwaa/upstream-to-airflow
that referenced
this pull request
Aug 8, 2026
…xport (apache#71334) (cherry picked from commit 1f529f3) 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 8, 2026
…xport (apache#71334) (cherry picked from commit 1f529f3) Co-authored-by: Jyun-An Chen <jun930436@gmail.com>
dabla
pushed a commit
to dabla/airflow
that referenced
this pull request
Aug 14, 2026
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.
Sumarry
Two steps in
.github/actions/migration_tests/action.ymlreference${DB_MANGERS}while the surrounding
env:block definesDB_MANAGERS. The variable is undefined,so the export resolves to
AIRFLOW__DATABASE__EXTERNAL_DB_MANAGERS=(empty). Theother two steps in the same file spell it correctly.
Nothing fails: GitHub's default
shell: bashruns without-u,export X=on itsown line is valid, and the migration commands on the next line run normally — so the
steps have stayed green since the typo was introduced in #50343.
Current impact: none.
Since #62308,
RunDBManagerstarts from DB managersauto-discovered via
provider.yaml, and the FAB provider declares its own, so theempty config is simply skipped. This is a cleanup: it removes a silent failure that
would come back if discovery were ever not in play, and stops the file contradicting
itself.