-
Notifications
You must be signed in to change notification settings - Fork 218
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
Fix Whitespace Issue in Migration Tool #3737
base: main
Are you sure you want to change the base?
Conversation
Can one of the admins verify this patch? |
12 similar comments
Can one of the admins verify this patch? |
Can one of the admins verify this patch? |
Can one of the admins verify this patch? |
Can one of the admins verify this patch? |
Can one of the admins verify this patch? |
Can one of the admins verify this patch? |
Can one of the admins verify this patch? |
Can one of the admins verify this patch? |
Can one of the admins verify this patch? |
Can one of the admins verify this patch? |
Can one of the admins verify this patch? |
Can one of the admins verify this patch? |
it would be nice to provide also a unit test for this change @arkitex ok to test |
SonarCloud Quality Gate failed. |
jenkins retest this please |
Error:
Jenkins retest this please |
unfortunately newer nodejs requires specific glib and C++ libraries installed so we have an error there:
|
jenkins retest this please testing nodejs 18.20.2 for Sonar analysis |
jenkins retest this please |
1 similar comment
jenkins retest this please |
Ran into this issue when migrating a 6.x project to 7.66.0. We had a Project name with a space in it (Ex:
Example Project
). TheURI.create
method called by the migration tool (way down in the call stack, inorg/guvnor/structure/backend/organizationalunit/config/SpaceConfigStorageImpl.java
) fails on whitespace, whoops!As a fix, URLEncode the group name immediately upon launching the migration script.
Also, do it when moving data to the space config repo - unfortunately gotta do it in two places.
Tested through migrating previously failing project - this time, it passed.