From 912887a4dbee20e5f6c0d1536e4a5060f9676db6 Mon Sep 17 00:00:00 2001 From: Calvin Leung Huang Date: Tue, 5 Jul 2016 15:53:30 -0400 Subject: [PATCH] Fix substring length on obfuscated token --- consul/acl.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consul/acl.go b/consul/acl.go index 0397addc1b..fa3f558a6c 100644 --- a/consul/acl.go +++ b/consul/acl.go @@ -183,7 +183,7 @@ func (c *aclCache) lookupACL(id, authDC string) (acl.ACL, error) { s := id // Print last 3 chars of the token if long enough, otherwise completly hide it 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 { s = redactedToken }