Migration tool is not picking up any workitem neither throwing an error. #2011
Closed
madhuripawar2212
started this conversation in
General
Replies: 1 comment 7 replies
-
I can see in the log screenshot that you provided that you query is returning 0 work items to Migrate! Try changing "IN" to "NOT IN" |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
While running the migration tool to migrate the workitems, its just finishing the migration with out recognizing any workitems and its not even throwing any errors. I am using the latest version
Configuration:
{
"Version": "15.0",
"Endpoints": {
"AzureDevOpsEndpoints": [
{
"name": "Target",
"$type": "AzureDevOpsEndpointOptions",
"Organisation": "https://dev.azure.com//",
"Project": "",
"AuthenticationMode": "AccessToken",
"AccessToken": "",
"EndpointEnrichers": null
},
{
"Name": "Source",
"$type": "AzureDevOpsEndpointOptions",
"Organisation": "https://dev.azure.com//",
"Project": "",
"AuthenticationMode": "AccessToken",
"AccessToken": "",
"EndpointEnrichers": null
}
],
"TfsEndpoints": [
{
"Name": "MyTarget",
"Organisation": "https://dev.azure.com//",
"Project": "",
"AuthenticationMode": "AccessToken",
"AccessToken": ""
},
{
"Name": "MySource",
"Organisation": "https://dev.azure.com//",
"Project": "",
"AuthenticationMode": "AccessToken",
"AccessToken": ""
}
]
},
"ChangeSetMappingFile": null,
"Target": {
"$type": "TfsTeamProjectConfig",
"Collection": "https://dev.azure.com//",
"Project": "",
"ReflectedWorkItemIDFieldName": "ReflectedWorkItemId",
"AllowCrossProjectLinking": false,
"AuthenticationMode": "AccessToken",
"PersonalAccessToken": "",
"PersonalAccessTokenVariableName": "",
"LanguageMaps": {
"AreaPath": "Area",
"IterationPath": "Iteration"
}
},
"Source": {
"$type": "TfsTeamProjectConfig",
"Collection": "https://dev.azure.com//",
"Project": "",
"ReflectedWorkItemIDFieldName": "ReflectedWorkItemId",
"AllowCrossProjectLinking": false,
"AuthenticationMode": "AccessToken",
"PersonalAccessToken": "",
"PersonalAccessTokenVariableName": "",
"LanguageMaps": {
"AreaPath": "Area",
"IterationPath": "Iteration"
}
},
"GitRepoMapping": null,
"LogLevel": "Debug",
"CommonEnrichersConfig": [],
"Processors": [
{
"$type": "WorkItemMigrationConfig",
"Enabled": true,
"UpdateCreatedDate": true,
"UpdateCreatedBy": true,
"WIQLQuery": "SELECT [System.Id] FROM WorkItems WHERE [System.TeamProject] = @teamproject AND [System.WorkItemType] IN ('Program', 'Portfolio', 'Test Suite', 'Test Plan','Shared Steps','Shared Parameter','Feedback Request') ORDER BY [System.ChangedDate] DESC",
"FixHtmlAttachmentLinks": true,
"WorkItemCreateRetryLimit": 5,
"FilterWorkItemsThatAlreadyExistInTarget": false,
"PauseAfterEachWorkItem": false,
"AttachRevisionHistory": false,
"GenerateMigrationComment": true,
"WorkItemIDs": null,
"MaxGracefulFailures": 0,
"SkipRevisionWithInvalidIterationPath": false,
"SkipRevisionWithInvalidAreaPath": false
},
{
"$type": "TestVariablesMigrationConfig",
"Enabled": false
},
{
"$type": "TestConfigurationsMigrationConfig",
"Enabled": false
},
{
"$type": "TestPlansAndSuitesMigrationConfig",
"Enabled": false,
"PrefixProjectToNodes": false,
"OnlyElementsWithTag": null,
"TestPlanQueryBit": null,
"RemoveAllLinks": false,
"MigrationDelay": 0,
"UseCommonNodeStructureEnricherConfig": false,
"NodeBasePaths": [],
"AreaMaps": null,
"IterationMaps": null,
"RemoveInvalidTestSuiteLinks": false,
"FilterCompleted": false
},
{
"$type": "AzureDevOpsPipelineProcessorOptions",
"Enabled": false,
"MigrateBuildPipelines": true,
"MigrateReleasePipelines": true,
"MigrateTaskGroups": true,
"MigrateVariableGroups": true,
"MigrateServiceConnections": true,
"BuildPipelines": null,
"ReleasePipelines": null,
"RefName": null,
"SourceName": "Source",
"TargetName": "Target",
"RepositoryNameMaps": {}
},
{
"$type": "TfsSharedQueryProcessorOptions",
"Enabled": false,
"PrefixProjectToNodes": false,
"SharedFolderName": "Shared Queries",
"SourceToTargetFieldMappings": null,
"ProcessorEnrichers": null,
"SourceName": "MySource",
"TargetName": "MyTarget"
}
]
}
Beta Was this translation helpful? Give feedback.
All reactions