You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ProjectTemplates/ReferenceProject/Startup.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -165,7 +165,7 @@ public void Configure(IApplicationBuilder app)
165
165
app.UseEndpoints(endpoints =>
166
166
{
167
167
endpoints.MapDefaultControllerRoute();
168
-
endpoints.MapHealthChecks("/health");// TODO: Must be documented: https://docs.microsoft.com/en-us/aspnet/core/host-and-deploy/health-checks?view=aspnetcore-3.1
168
+
endpoints.MapHealthChecks(Constants.Health.EndPoint);// TODO: Must be documented: https://docs.microsoft.com/en-us/aspnet/core/host-and-deploy/health-checks?view=aspnetcore-3.1
0 commit comments