Browse Source

Fix substring length on obfuscated token

pull/1837/head
Calvin Leung Huang 9 years ago
parent
commit
912887a4db
  1. 2
      consul/acl.go

2
consul/acl.go

@ -183,7 +183,7 @@ func (c *aclCache) lookupACL(id, authDC string) (acl.ACL, error) {
s := id s := id
// Print last 3 chars of the token if long enough, otherwise completly hide it // Print last 3 chars of the token if long enough, otherwise completly hide it
if len(s) > 3 { if len(s) > 3 {
s = fmt.Sprintf("token ending in '%s'", s[len(s)-1:]) s = fmt.Sprintf("token ending in '%s'", s[len(s)-3:])
} else { } else {
s = redactedToken s = redactedToken
} }

Loading…
Cancel
Save