Skip to content

Commit

Permalink
Update flags! (#1793)
Browse files Browse the repository at this point in the history
Update `FilterWorkItemsThatAlreadyExistInTarget` and
`ShouldCreateNodesUpFront` to false.

- `FilterWorkItemsThatAlreadyExistInTarget` should be false and at some
point should be removed. It causes too many issues for users.
- `ShouldCreateNodesUpFront` is necessary now as we have integrated it
into the mapping engine.
  • Loading branch information
MrHinsh authored Dec 20, 2023
1 parent 8ff0f8d commit 25a7452
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ public WorkItemMigrationConfig()
{
Enabled = false;
WorkItemCreateRetryLimit = 5;
FilterWorkItemsThatAlreadyExistInTarget = true;
FilterWorkItemsThatAlreadyExistInTarget = false;
ReplayRevisions = true;
LinkMigration = true;
AttachmentMigration = true;
Expand All @@ -235,7 +235,7 @@ public WorkItemMigrationConfig()
SkipRevisionWithInvalidIterationPath = false;
SkipRevisionWithInvalidAreaPath = false;
ShouldCreateMissingRevisionPaths = true;
ShouldCreateNodesUpFront = true;
ShouldCreateNodesUpFront = false;
}
}
}

0 comments on commit 25a7452

Please sign in to comment.