From ba57ed07a96731619781c876ab096af2b3611401 Mon Sep 17 00:00:00 2001 From: Tom Deseyn Date: Thu, 22 Jan 2026 12:10:45 +0100 Subject: [PATCH] 8.0/test: fix tests not passing when IPv6 is also enabled. One of the .NET test apps was only binding to IPv4. This caused curl not being able to connect to it. This changes the app to use a wildcard bind (IPv4 + IPv6). The tests for 9.0 and 10.0 are already using wildcard binds. --- 8.0/build/test/asp-net-hello-world/Startup.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/8.0/build/test/asp-net-hello-world/Startup.cs b/8.0/build/test/asp-net-hello-world/Startup.cs index a2943b715..7557cab6f 100644 --- a/8.0/build/test/asp-net-hello-world/Startup.cs +++ b/8.0/build/test/asp-net-hello-world/Startup.cs @@ -42,7 +42,7 @@ public static void Main(string[] args) { var host = new WebHostBuilder() .UseKestrel() - .UseUrls("http://0.0.0.0:8080") + .UseUrls("http://*:8080") .UseContentRoot(Directory.GetCurrentDirectory()) .UseStartup() .Build();