Skip to content

Commit 3c79cb1

Browse files
author
Rene Kaufmann
committed
don't transfer keys to lowercase
1 parent abd8d2d commit 3c79cb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nats/client.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ func (c *Client) Close() {
8080

8181
func clean(key string) string {
8282
newKey := "/" + key
83-
return cleanReplacer.Replace(strings.ToLower(newKey))
83+
return cleanReplacer.Replace(newKey)
8484
}
8585

8686
// GetValues is used to lookup all keys with a prefix.

0 commit comments

Comments
 (0)