-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix SocketsHttpHandler metrics test on Android #90225
Fix SocketsHttpHandler metrics test on Android #90225
Conversation
Tagging subscribers to this area: @dotnet/ncl Issue DetailsSaw failures like these in a few
|
/azp run runtime-extra-platforms |
Azure Pipelines successfully started running 1 pipeline(s). |
src/libraries/System.Net.Http/tests/FunctionalTests/MetricsTest.cs
Outdated
Show resolved
Hide resolved
/azp run runtime-extra-platforms |
Azure Pipelines successfully started running 1 pipeline(s). |
@MihaZupan I think the problem must be somewhere else. The native mobile handler is located in the xamarin-android repo and AFAIK we can only use the HttpClientHandler on top of SocketsHttpHandler in runtime tests. |
Thanks @simonrozsival, you're right, it was using the correct handler. |
Saw failures like these in a few
runtime-extra-platforms
runs.My guess is the test ended up using the mobile platform handler instead of
SocketsHttpHandler
.