From a3909a86668911a9882392d3c59049cb2d4df17d Mon Sep 17 00:00:00 2001 From: ManickaP Date: Tue, 17 Feb 2026 17:38:19 +0100 Subject: [PATCH] Re-enable Http3 nginx interop test The quic.nginx.org interop test was disabled due to TLS alert 112 errors. The known build error report shows 0 hits in the past 30+ days, indicating the external server issue has been resolved. Re-enable the test URI in InteropUrisWithContent(). Fixes https://github.com/dotnet/runtime/issues/120257 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../tests/FunctionalTests/HttpClientHandlerTest.Http3.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/libraries/System.Net.Http/tests/FunctionalTests/HttpClientHandlerTest.Http3.cs b/src/libraries/System.Net.Http/tests/FunctionalTests/HttpClientHandlerTest.Http3.cs index 7baa885cb85f32..3b8c4138988d83 100644 --- a/src/libraries/System.Net.Http/tests/FunctionalTests/HttpClientHandlerTest.Http3.cs +++ b/src/libraries/System.Net.Http/tests/FunctionalTests/HttpClientHandlerTest.Http3.cs @@ -1943,8 +1943,7 @@ public static TheoryData InteropUrisWithContent() => new TheoryData { { "https://cloudflare-quic.com/" }, // Cloudflare with content - // [ActiveIssue("https://github.com/dotnet/runtime/issues/120257")] - // { "https://quic.nginx.org/" }, // Nginx with content + { "https://quic.nginx.org/" }, // Nginx with content }; }