Reputation: 1246
We are using the SaaS Azure DevOps and this morning all pipelines starting failing with this error
TF400898: An Internal Error Occurred. Activity Id: ca42ac35-7b58-4ac4-9c2e-41d1aa848dce
According to https://status.dev.azure.com/ there are no known outages. I see a previous question on here that indicated it was a Microsoft issue but nothing so far on their twitter feeds and support pages.
EDIT:
Here's a sample JSON response
{
"$id":"1",
"innerException":null,
"message":"TF400898: An Internal Error Occurred. Activity Id: e97f2210-35fe-4251-8451-75ed71049e3b.",
"typeName":"System.Data.SqlClient.SqlException, System.Data",
"typeKey":"SqlException",
"errorCode":0,
"eventId":0
}
EDIT 2:
Apparently its just the - checkout
command! I ran a simple test of a pipeline with only this:
trigger: none
pool: some-pool
steps:
- checkout: git://MyAzureDevOpsProject/SomeRepo
and it fails. Can anyone else double check that?
Upvotes: 1
Views: 7631
Reputation: 28196
Sorry for the inconvenience, there's one issue about this in DC forum. Some customers also encountered similar issues. We have reported it to product team, you can follow the link above to get notifications if there's any update.
And as a workaround from Richard Gavel:
Try defining the repo in yaml using explicit resource instead of Inline syntax.
Update: Roll out is now completed. Our telemetry shows that the incident has been mitigated. We apologize for the interruptions caused by this incident.
Upvotes: 2