mirror of
https://github.com/grafana/grafana.git
synced 2024-11-30 12:44:10 -06:00
skip jwt token auth if privateKey is empty
This commit is contained in:
parent
43aa6603a3
commit
fbe0ffd10b
@ -55,7 +55,7 @@ func ApplyRoute(ctx context.Context, req *http.Request, proxyPath string, route
|
||||
}
|
||||
}
|
||||
|
||||
if route.JwtTokenAuth != nil {
|
||||
if route.JwtTokenAuth != nil && len(ds.SecureJsonData["privateKey"]) != 0 {
|
||||
if token, err := tokenProvider.getJwtAccessToken(ctx, data); err != nil {
|
||||
logger.Error("Failed to get access token", "error", err)
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user