Issue to migrate Azure Devops Server collection in spanish to Azure DevOps. #2986
Unanswered
glasserre-pdw
asked this question in
Q&A
Replies: 2 comments
-
|
You shoudl take a look at https://devopsmigration.io/docs/reference/tools/work-item-type-validator-tool/. This shuld be linked in the logs. Also, where did you get "CommonEnrichersConfig" from? |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Hi @MrHinsh |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello.
I'm trying to migrate some project collections from an Azure DevOps Server in spanish to Azure DevOps.
When truing to use the tool i got the followinf error message :
I trying to use the WorkItemTypeMappingTool, but got same error.
Below my migration configuration file :
{ "Serilog": { "MinimumLevel": "Debug" }, "MigrationTools": { "Version": "16.1", "CommonTools": { "CommonTools": { "WorkItemTypeMappingTool": { "Enabled": true, "Mappings": { "Caso de prueba": "Test plan" } } } }, "Endpoints": { "Source": { "EndpointType": "TfsTeamProjectEndpoint", "Collection": "https://devop.domain.tld/Collection/", "Project": "XXX Base", "Authentication": { "AuthenticationMode": "AccessToken", "NetworkCredentials": { "Domain": "", "UserName": "", "Password": "** removed as a secret ***" }, "AccessToken": "** removed as a secret ***" }, "ReflectedWorkItemIdField": "Custom.ReflectedWorkItemId", "LanguageMaps": { "AreaPath": "Area", "IterationPath": "Iteration" } }, "Target": { "EndpointType": "TfsTeamProjectEndpoint", "Collection": "https://dev.azure.com/XXXX-YYYYY/", "Project": "Base", "Authentication": { "AuthenticationMode": "AccessToken", "NetworkCredentials": { "Domain": "", "UserName": "", "Password": "** removed as a secret ***" }, "AccessToken": "** removed as a secret ***" }, "ReflectedWorkItemIdField": "Custom.ReflectedWorkItemId", "LanguageMaps": { "AreaPath": "Area", "IterationPath": "Iteration" } } }, "Processors": [ { "ProcessorType": "TfsWorkItemMigrationProcessor", "Enabled": true, "UpdateCreatedDate": true, "UpdateCreatedBy": true, "WIQLQuery": "SELECT [System.Id] FROM WorkItems WHERE [System.TeamProject] = @TeamProject AND [System.WorkItemType] NOT IN ('Test Suite', 'Test Plan','Shared Steps','Shared Parameter','Feedback Request') ORDER BY [System.ChangedDate] desc", "FixHtmlAttachmentLinks": true, "WorkItemCreateRetryLimit": 5, "FilterWorkItemsThatAlreadyExistInTarget": false, "GenerateMigrationComment": true, "SourceName": "Source", "TargetName": "Target" }, { "ProcessorType": "ProcessDefinitionProcessor", "Enabled": true, "Processes": {"Caso de prueba":["Caso de prueba"]}, "ProcessMaps": {"Test Plan": "Caso de prueba"}, "UpdateProcessDetails": true, "MaxDegreeOfParallelism": 0, "SourceName": "", "TargetName": "" } ], "CommonEnrichersConfig": [ { "$type": "WorkItemTypeMappingEnricherOptions", "Enabled": true, "Mappings": { "Epopeya": "Epic", "Problema": "Issue" } } ], "Iterations":{ "Mappings":[ { "Match": "Creation Base\\\\Sprint 1", "Replacement": "Base\\Sprint 1" } ] }, "Areas":{ "Mappings":[ { "Match": "Creation Base\\\\Creation Base", "Replacement": "Base\\Creation Base" } ] } } }Don't understand how we can map a work item type to another one.
Your help will appreciate.
Best regards.
Beta Was this translation helpful? Give feedback.
All reactions