Fix health check requiring authentication

This commit is contained in:
Sean Greenawalt 2025-05-10 23:06:26 -04:00
commit 51485d0473
Signed by: seang96
GPG key ID: 504F02B511005571

View file

@ -112,5 +112,6 @@ app.UseAuthorization();
app.MapControllers();
app.MapHealthChecks("/health");
app.MapHealthChecks("/health")
.AllowAnonymous();
app.Run();