-
Notifications
You must be signed in to change notification settings - Fork 192
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add missing migration of transport entry points in archives #5604
Add missing migration of transport entry points in archives #5604
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks a lot for the contribution @janssenhenning . This would be an important fix to add indeed. The fix itself looks good, however, we can't be putting this in the existing migration and should really rather create a new one. The reason is that since the 11 -> 12
migration has already been released, there will be archives out there with v12 that does not contain the migration. To have these migrate as well, we need to create a new 12 -> 13
migration. Could you add this separately? You can just copy paste from existing migrations and tests
e202254
to
46034f7
Compare
@sphuber Sorry for the late response. I now moved it into a separate migration |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks a lot @janssenhenning that looks good. Could you just add a test for it please? If you don't have the time, let me know and I can see if I can add it, no problem.
@sphuber There is a test that the migration works. The test in I didin't see an explicit test for the |
That parametrized test just checks that the migration does not except and the generic migration actions, such as updating the version in the metadata, is done correctly. There is no explicit check on the actual migration specific functionality.
You are right, there isn't one for |
This reverts commit e245dea6e4589fc48b7dbaeec62e19a470d311a5.
c48f033
to
3568894
Compare
Done |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks a lot @janssenhenning !
Fixes #5587