1
0
Fork 0
mirror of https://github.com/eosswedenorg/thalos synced 2026-06-26 10:43:42 +02:00

transport/redis_common/key.go: use Channel.Format() instead of Channel.String()

This commit is contained in:
Henrik Hautakoski 2023-03-30 03:37:35 +02:00
parent e45259603b
commit e860c81601

View file

@ -15,5 +15,5 @@ type Key struct {
} }
func (k Key) String() string { func (k Key) String() string {
return fmt.Sprintf("%s::%s", k.NS, k.Channel) return fmt.Sprintf("%s::%s", k.NS, k.Channel.Format("/"))
} }