Replies: 2 comments
-
|
Why do you have the |
Beta Was this translation helpful? Give feedback.
-
|
The error In your config, the mapping in You can fix it by removing or narrowing that mapping. The NodeStructureTool should only map child paths, not the project root. Example: Then keep your TL;DR -> Don’t map the root in NodeStructureTool; only map sub-paths. The shared query migration will then complete without TF237012. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
System.InvalidOperationException: TF237012: Root node project2 may not be modified.
getting this error while migrating shared queries from one org1/project1 to another org2/project2.
Here is the processor config.
"Processors": [
{
"ProcessorType": "TfsSharedQueryProcessor",
"Enabled": true,
"PrefixProjectToNodes": false,
"SharedFolderName": "Shared Queries",
"SourceToTargetFieldMappings" : {
"L2 Scenario": "Epic",
"Risk": "Bug",
"SR Deployment Request": "Task"
},
"SourceName": "Source",
"TargetName": "Target"
}
I also have nodestructure tool for area path and iteration path mapping
"TfsNodeStructureTool": {
"Areas": {
"Filters": [],
"Mappings": [
{
"Match": "^Project1([\\]?.)$",
"Replacement": "Project2$1"
}
]
},
"Enabled": true,
"Iterations": {
"Filters": [],
"Mappings": [
{
"Match": "^Project1([\\]?.)$",
"Replacement": "Project2$1"
}
]
},
Beta Was this translation helpful? Give feedback.
All reactions