Fix ACL->authz migration script for "[ project, program ]" ACLs #284
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.
Fix migration script:
['PROG', 'PROJ']
we get path =/programs/PROG/projects/PROJ
['PROJ', 'PROG']
we getEnvironmentError: program or project PROG does not exist
The script will also now raise an error for ACL
[<project that exists>, <program that doesn't exist>]
instead of just using the project to generate the pathAlso,
sqlalchemy-utils 0.36.8
is breaking indexd:FATAL: database "indexd_user" does not exist
so limiting to working versions
sqlalchemy-utils>=0.33.11,<=0.36.6
see kvesteri/sqlalchemy-utils#462
Bug Fixes
Dependency updates