We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc99130 commit 653f09cCopy full SHA for 653f09c
pkg/api/keystone/keystone.go
@@ -66,11 +66,7 @@ func getNewToken(c *middleware.Context) (string, error) {
66
67
var keystonePasswordObj interface{}
68
if setting.KeystoneCookieCredentials {
69
- if setting.KeystoneCredentialAesKey != "" {
70
- keystonePasswordObj = c.GetCookie(middleware.SESS_KEY_PASSWORD)
71
- } else {
72
73
- }
+ keystonePasswordObj = c.GetCookie(middleware.SESS_KEY_PASSWORD)
74
if keystonePasswordObj == nil {
75
return "", errors.New("Couldn't find cookie containing keystone password")
76
} else {
0 commit comments