Replies: 2 comments 5 replies
-
Using v16.2.9 of the migration tool — even with NodeStructuresMigrationConfig disabled and AreaMaps/IterationMaps defined, all nodes (Area/Iteration) are still getting migrated. Looking for help on how to restrict node migration to only the mapped ones. Appreciate your input! |
Beta Was this translation helpful? Give feedback.
-
Thanks for your message. I did try running the config through devopsmigration upgrade -c configuration.json, but unfortunately, it didn't resolve the issue. I also attempted the code snippet below , but it didn’t work either. https://devopsmigration.io/docs/reference/tools/tfs-node-structure-tool/ "TfsNodeStructureTool": { Could you please share the correct code or let me know the exact processor name or configuration needed for setting up the Node tools? Your help would be much appreciated. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
When I run the tool using execute, it automatically migrates all Area and Iteration nodes, before processing any work items — even though I have:
Disabled unnecessary processors
Defined mappings in AreaMaps and IterationMaps
But this behavior still persists and all nodes get created. In My case I have 1000+ Area Map and 1000+ Iteration present at Source .
What I've Tried
I defined this in my WorkItemMigrationConfig:
{
"Processor": "WorkItemMigrationConfig",
"Enabled": true,
"AreaMaps": {
"MyProject\Area 1": "MyTargetProject\Area A"
},
"IterationMaps": {
"MyProject\Iteration 1": "MyTargetProject\Sprint A"
}
}
I also tried disabling the node processor:
{
"Processor": "NodeStructuresMigrationConfig",
"Enabled": false
}
But the tool still processes and creates all Area/Iteration nodes during execution.
Question
How can I prevent all nodes from being migrated, and restrict migration to only the nodes I define in AreaMaps and IterationMaps?
Is there a way in v16.2.9 to disable automatic node migration completely — or filter specific nodes to migrate only?
Thanks in advance for your help!
Beta Was this translation helpful? Give feedback.
All reactions