You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This results in an HTTP 500 for the user. This has happened at least 6 times in the last 7 days on PROD.
AI query
requests
| where timestamp > ago(90d)
| where name contains "PushPackageApi" or name contains "verify"
| where name startswith "PUT" or name startswith "POST"
| summarize sum(itemCount) by bin(timestamp, 1d), tostring(resultCode)
requests
| where timestamp > ago(7d)
| where name contains "PushPackageApi" or name contains "verify"
| where name startswith "PUT" or name startswith "POST"
| where resultCode == 500
| join kind=inner (
exceptions
) on $left.operation_Id == $right.operation_Id
| where innermostMessage == "Collection was modified; enumeration operation may not execute."
| project problemId
This results in an HTTP 500 for the user. This has happened at least 6 times in the last 7 days on PROD.
AI query
This is where the exception is being thrown from:
NuGetGallery/src/NuGetGallery/Services/CloudDownloadCountService.cs
Line 53 in 4607a1d
Probably need some locking.
The text was updated successfully, but these errors were encountered: