Conversation
Five places name the platform's Python package: the database ENGINE in the three alternative installation settings files, and the two imports the AWX migration script makes to rebuild role parentage. ctrliq/ascender#988 makes every module answer to both names, aliased to one module object rather than imported twice, so this is the same code either way. It is a move off the old name rather than a fix. Needs the Ascender release carrying that alias. Until then these paths only resolve under the old name, so this cannot go out ahead of it. The awx_migrate_ascender role keeps its name. It migrates from AWX.
Collaborator
|
I may wait on this one, considering most people just do a git pull of main versus pulling an exact branch. |
Contributor
Author
|
Agreed, this one should wait. Nothing is lost by holding it: |
This was referenced Sep 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.
Five places name the platform's Python package:
'ENGINE': 'awx.main.db.profiled_pg'in the threealternative/settings files.awx_migrate.sh.j2makes to rebuild role parentage,awx.main.models.rbacandawx.main.migrations._rbac.ctrliq/ascender#988 makes every module answer to both names, aliased to one module object rather than imported twice, so this is the same code either way. It is a move off the old name rather than a fix.
Ordering
Needs the Ascender release carrying that alias. Unlike ascender-collection, whose CI tracks the platform's default branch, this repository installs a pinned
ASCENDER_VERSION, so these paths only resolve under the old name until a release carries the new one. This cannot go out ahead of it.The
awx_migrate_ascenderrole keeps its name. It migrates from AWX, so AWX is the right word.The sibling change for ascender-pro-install is #16.