mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 04:04:00 -06:00
ceb6f8b409
* Reduce to debug for session need rotation error * try to extract log level from error and fallback to warning
12 lines
541 B
Go
12 lines
541 B
Go
package authn
|
|
|
|
import "github.com/grafana/grafana/pkg/util/errutil"
|
|
|
|
var (
|
|
ErrTokenNeedsRotation = errutil.Unauthorized("session.token.rotate", errutil.WithLogLevel(errutil.LevelDebug))
|
|
ErrUnsupportedClient = errutil.BadRequest("auth.client.unsupported")
|
|
ErrClientNotConfigured = errutil.BadRequest("auth.client.notConfigured")
|
|
ErrUnsupportedIdentity = errutil.NotImplemented("auth.identity.unsupported")
|
|
ErrExpiredAccessToken = errutil.Unauthorized("oauth.expired-token", errutil.WithPublicMessage("OAuth access token expired"))
|
|
)
|