File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ public Endpoints(WebApplication app)
41
41
// To retrieve configuration for the registrationprocess in ServiceRegistry
42
42
app . MapGet ( "/configurations" , ( HttpContext httpContext ) =>
43
43
{
44
- // Console.WriteLine("Received GET request for configurations");
44
+ Console . WriteLine ( "Received GET request for configurations" ) ;
45
45
return Registration . GetConfiguration ( ) ;
46
46
} ) ;
47
47
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base
4
4
5
5
WORKDIR /app
6
6
7
- EXPOSE 4000
7
+ # EXPOSE 4000
8
8
EXPOSE 4001
9
9
ENV ASPNETCORE_URLS=https://*:4000
10
10
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ public static void Main(string[] args)
65
65
app . UseSwaggerUI ( ) ;
66
66
}
67
67
68
- app . UseHttpsRedirection ( ) ;
68
+ // app.UseHttpsRedirection();
69
69
70
70
app . UseAuthorization ( ) ;
71
71
//ResourceConnector.GetGraphForResource("08ac06ea-4005-4e31-ae69-7ffc0447b332");
You can’t perform that action at this time.
0 commit comments