Skip to content

Commit

Permalink
Oops Google Cloud Run has /healthz reserved
Browse files Browse the repository at this point in the history
  • Loading branch information
evanlihou committed Jun 20, 2024
1 parent e124d0f commit be249ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FiMAdminApi/Endpoints/HealthzEndpoints.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public static class HealthEndpoints
{
public static WebApplication RegisterHealthEndpoints(this WebApplication app)
{
var usersGroup = app.MapGroup("/healthz")
var usersGroup = app.MapGroup("/health")
.WithTags("Health Checks");

usersGroup.MapGet("", async ([FromServices] HealthCheckService hc, [FromServices] ILoggerFactory logger) =>
Expand Down

0 comments on commit be249ae

Please sign in to comment.