From 5523bdfe6558d37ac2fe3bff6b9478b5cc933d69 Mon Sep 17 00:00:00 2001 From: Magne Helleborg Date: Thu, 6 Jun 2024 12:13:32 +0200 Subject: [PATCH] Removed hardcoded IP for integration test --- Integration/Shared/Runtime.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Integration/Shared/Runtime.cs b/Integration/Shared/Runtime.cs index 6b07415cf..d9631f490 100644 --- a/Integration/Shared/Runtime.cs +++ b/Integration/Shared/Runtime.cs @@ -71,7 +71,7 @@ public static RunningRuntime CreateAndStart(int numberOfTenants) coll.AddOptions().Configure(builder => { builder.Management = new EndpointConfiguration { Port = 0 }; - // builder.Private = new EndpointConfiguration { Port = 0 }; + builder.Private = new EndpointConfiguration { Port = 0 }; builder.Public = new EndpointConfiguration { Port = 0 }; }); })