Azure DevOps Pipeline Processor - System.ArgumentNullException- uriString #2354
mhpaf
announced in
Exceptions
Replies: 1 comment 2 replies
-
your AzureDevOpsendpoint does not follow the docs? Granted the sample on https://nkdagility.com/learn/azure-devops-migration-tools/Reference/Endpoints/AzureDevOpsEndpoint/ is not great! You should use:
|
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
{
"Serilog": {
"MinimumLevel": "Information"
},
"MigrationTools": {
"Version": "16.0",
"Endpoints": {
"Source": {
"EndpointType": "AzureDevOpsEndpoint",
"Collection": "https://dev.azure.com/xxx/",
"Project": "",
"Authentication": {
"AuthenticationMode": "AccessToken",
"AccessToken": ""
}
},
"Target": {
"EndpointType": "AzureDevOpsEndpoint",
"Collection": "https://dev.azure.com/yyy/",
"Project": "",
"Authentication": {
"AuthenticationMode": "AccessToken",
"AccessToken": ""
}
}
},
"CommonTools": {},
"Processors": [
{
"ProcessorType": "AzureDevOpsPipelineProcessor",
"BuildPipelines": "",
"Enabled": "True",
"MigrateBuildPipelines": "False",
"MigrateReleasePipelines": "False",
"MigrateServiceConnections": "False",
"MigrateTaskGroups": "False",
"MigrateVariableGroups": "True",
"ReleasePipelines": "",
"SourceName": "Source",
"TargetName": "Target",
"RepositoryNameMaps": {}
}
]
}
}
I get the following error when i try to use the AzureDevOpsPipelineProcessor:
[10:37:40 FTL] [16.0.2] Error while running AzureDevOpsPipelineProcessor
System.ArgumentNullException: Der Wert darf nicht NULL sein.
Parametername: uriString
bei System.Uri..ctor(String uriString, UriKind uriKind)
(I get the same error for the other migration options aswell (build/realease/serviceconnections and tasks)
Beta Was this translation helpful? Give feedback.
All reactions