mirror of
https://github.com/mudler/LocalAI.git
synced 2024-12-18 20:27:57 +00:00
0893d3cbbe
* fix(health): do not require auth for /healthz and /readyz Fixes: #3655 Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * Comment so I don’t forget Adding a reminder here... --------- Signed-off-by: Ettore Di Giacinto <mudler@localai.io> Co-authored-by: Dave <dave@gray101.com>
14 lines
232 B
Go
14 lines
232 B
Go
package routes
|
|
|
|
import "github.com/gofiber/fiber/v2"
|
|
|
|
func HealthRoutes(app *fiber.App) {
|
|
// Service health checks
|
|
ok := func(c *fiber.Ctx) error {
|
|
return c.SendStatus(200)
|
|
}
|
|
|
|
app.Get("/healthz", ok)
|
|
app.Get("/readyz", ok)
|
|
}
|