Skip to content

Commit ebfa90b

Browse files
authored
📝 (TfsNodeStructureTool.cs): update documentation URL for missing nod… (#2601)
…es warning Corrects the URL in the log warning message to point to the accurate documentation reference for handling missing Area or Iteration paths. This ensures users are directed to the correct instructions, improving the usability and effectiveness of the log messages.
2 parents 67677e8 + 40f2fa6 commit ebfa90b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎src/MigrationTools.Clients.TfsObjectModel/Tools/TfsNodeStructureTool.cs‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -659,7 +659,7 @@ public bool ValidateTargetNodesExist(List<NodeStructureItem> missingItems)
659659
{
660660
Log.LogWarning("!! There are MISSING Area or Iteration Paths");
661661
Log.LogWarning("NOTE: It is NOT possible to migrate a work item if the Area or Iteration path does not exist on the target project. This is because the work item will be created with the same Area and Iteration path as the source work item with the project name swapped. The work item will not be created if the path does not exist. The only way to resolve this is to follow the instructions:");
662-
Log.LogWarning("!! There are {missingAreaPaths} Nodes (Area or Iteration) found in the history of the Source that are missing from the Target! These MUST be added or mapped before we can continue using the instructions on https://nkdagility.com/learn/azure-devops-migration-tools//Reference/v2/ProcessorEnrichers/TfsNodeStructureTool/#iteration-maps-and-area-maps", missingItems.Count);
662+
Log.LogWarning("!! There are {missingAreaPaths} Nodes (Area or Iteration) found in the history of the Source that are missing from the Target! These MUST be added or mapped before we can continue using the instructions on https://nkdagility.com/learn/azure-devops-migration-tools/Reference/Tools/TfsNodeStructureTool/#iteration-maps-and-area-maps", missingItems.Count);
663663
foreach (NodeStructureItem missingItem in missingItems)
664664
{
665665
string mapper = GetMappingForMissingItem(missingItem);

0 commit comments

Comments
 (0)