mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
ce6bf74c8d
This fixes edge cases where the remote IP was not correctly logged. Generally this is not an issue as most errors do not hit this handler, but in instances where a transport error occurs this is important.
11 lines
193 B
Go
11 lines
193 B
Go
package handlers
|
|
|
|
import (
|
|
"github.com/authelia/authelia/v4/internal/middlewares"
|
|
)
|
|
|
|
// HealthGET can be used by health checks.
|
|
func HealthGET(ctx *middlewares.AutheliaCtx) {
|
|
ctx.ReplyOK()
|
|
}
|