Skip to content

Commit 0fe3d43

Browse files
RakeshwarKRakeshwar Reddy Kambaiahgari
andauthored
Update apiHost URL by replacing localhost with * (#470)
* Replace localhost with * * up version --------- Co-authored-by: Rakeshwar Reddy Kambaiahgari <[email protected]>
1 parent e2f8bee commit 0fe3d43

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.16.37
1+
1.16.38

src/VirtualClient/VirtualClient.Main/ApiManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public async Task StartApiHostAsync(IServiceCollection dependencies, int apiPort
8383
{
8484
apiHost.UseMiddleware<ApiExceptionMiddleware>(dependencies.GetService<ILogger>());
8585
apiHost.MapControllers();
86-
apiHost.Urls.Add($"http://localhost:{apiPort}");
86+
apiHost.Urls.Add($"http://*:{apiPort}");
8787

8888
await apiHost.RunAsync();
8989
}

0 commit comments

Comments
 (0)