From 7ee75a582e539b2f120f193d9291b7d1542d8793 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 18 Aug 2026 04:46:02 +0000 Subject: [PATCH 1/2] Initial plan From 05cabb8b2a3a7313dc172fe9e1502a03c3afb668 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 18 Aug 2026 04:56:44 +0000 Subject: [PATCH 2/2] Fix Linux HTTP gateway test routing Co-authored-by: nagilson <23152278+nagilson@users.noreply.github.com> --- test/dotnet.Tests/CommandTests/Test/HttpTestHostGatewayTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/dotnet.Tests/CommandTests/Test/HttpTestHostGatewayTests.cs b/test/dotnet.Tests/CommandTests/Test/HttpTestHostGatewayTests.cs index 9b0689eed488..6014651a3eac 100644 --- a/test/dotnet.Tests/CommandTests/Test/HttpTestHostGatewayTests.cs +++ b/test/dotnet.Tests/CommandTests/Test/HttpTestHostGatewayTests.cs @@ -129,7 +129,7 @@ public async Task Options_WrongPathCannotPinCorsPolicy() using var client = new HttpClient(new HttpClientHandler { AllowAutoRedirect = false }); using var wrongPathRequest = new HttpRequestMessage( HttpMethod.Options, - new Uri(gateway.Endpoint.GetLeftPart(UriPartial.Authority) + "/")); + new Uri(gateway.Endpoint, "wrong-path")); wrongPathRequest.Headers.Add("Origin", "http://127.0.0.1:5001"); using HttpResponseMessage wrongPathResponse = await client.SendAsync(wrongPathRequest, TestContext.CancellationToken);