You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Currently the Cloud API throws an exception and the migration proccess fails if a project key contains a non-supported character like "-".
Describe the solution you'd like
There should be an option to sanitize project keys, in order to automatically convert dashes to underscores, or better, convert anything non supported to underscores.
Describe alternatives you've considered
Rename the projects before migration.
{
"type": "error",
"error": {
"fields": {
"key": [
"Project keys must start with a letter and may only consist of ASCII letters, numbers and underscores (A-Z, a-z, 0-9, _)"
]
},
"message": "Bad request"
}
}
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Currently the Cloud API throws an exception and the migration proccess fails if a project key contains a non-supported character like "-".
Describe the solution you'd like
There should be an option to sanitize project keys, in order to automatically convert dashes to underscores, or better, convert anything non supported to underscores.
Describe alternatives you've considered
Rename the projects before migration.
{
"type": "error",
"error": {
"fields": {
"key": [
"Project keys must start with a letter and may only consist of ASCII letters, numbers and underscores (A-Z, a-z, 0-9, _)"
]
},
"message": "Bad request"
}
}
The text was updated successfully, but these errors were encountered: