Skip to content

Commit

Permalink
fix: remove listen ip port
Browse files Browse the repository at this point in the history
  • Loading branch information
emalfroy authored and ArneD committed Feb 8, 2024
1 parent 382b12d commit 772f7c3
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/BuildingRegistry.Producer/Infrastructure/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,7 @@ public static async Task Main(string[] args)
.ConfigureWebHostDefaults(webHostBuilder =>
webHostBuilder
.UseStartup<Startup>()
.UseKestrel(options =>
{
options.ListenAnyIP(6014);
}))
.UseKestrel())
.UseConsoleLifetime()
.Build();

Expand Down

0 comments on commit 772f7c3

Please sign in to comment.