Migrating work items after Process Change #1556
Replies: 2 comments 13 replies
-
Looking for an answer to the same issue (in my case it's an Issue that has been changed to PBI). I have added a WorkItemTypeDefinition to my config.json, but this doesn't help; "WorkItemTypeDefinition": {
"Feature": "Feature",
"Epic": "Epic",
"Bug": "Bug",
"Product Backlog Item": "Product Backlog Item",
"Issue": "Product Backlog Item",
"Task": "Task",
"Impediment": "Impediment",
"Test Plan": "Test Plan",
"Test Suite": "Test Suite",
"Test Case": "Test Case",
"Shared Steps": "Shared Steps",
"Shared Parameter": "Shared Parameter",
"Feedback Request": "Feedback Request",
"Feedback Response": "Feedback Response",
"Code Review Request": "Code Review Request",
"Code Review Response": "Code Review Response"
} Apparently there is a setting: In the end, I skipped the revisions migration by setting |
Beta Was this translation helpful? Give feedback.
-
Looking at the code, it detects enough to write out a message but does not actually do anything with it. At the "-->" we should detect if the work item type for the revision even exists... and if not auto skip to final! Is that your expectation? We don't want to always do this as we do have code to switch the type as we go. Your circumstance is a process migration, and that is a different beast. |
Beta Was this translation helpful? Give feedback.
-
While running the migration I get on a bunch of PBI's the error
Microsoft.TeamFoundation.WorkItemTracking.Client.WorkItemTypeDeniedOrNotExistException: TF201077: The work item type cannot be found. It may have been renamed or destroyed.
When looking further in the logs, the cause of the failure is
WorkItem has changed type at one of the revisions, from User Story to Product Backlog Item
How can I handle this error?
Beta Was this translation helpful? Give feedback.
All reactions