Closed
Description
This started recently, all of the runs in the last 24 hours of these two workitems timed out.
The JIT and JIT.Directed are the most common ones but there are also occasional timeouts of other runtime tests.
Example Kusto query:
WorkItems
| where QueueName == "windows.10.amd64.android.open" and Queued >= ago(3d) and not(FriendlyName startswith "System" or FriendlyName startswith "Microsoft" or FriendlyName startswith "Common")
| summarize BadExit=countif(Status == "BadExit"), Fail=countif(Status == "Fail"), Pass=countif(Status == "Pass"), Timeout=countif(Status == "Timeout") by FriendlyName
| order by Timeout desc