mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2025-03-11 15:34:56 +00:00
lib/storage: fix printing tag filters in TagFilters.String
This commit is contained in:
parent
efbc83a13e
commit
54741ee578
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ func (tfs *TagFilters) String() string {
|
|||
var bb bytes.Buffer
|
||||
fmt.Fprintf(&bb, "{%s", tfs.tfs[0].String())
|
||||
for i := range tfs.tfs[1:] {
|
||||
fmt.Fprintf(&bb, ", %s", tfs.tfs[i].String())
|
||||
fmt.Fprintf(&bb, ", %s", tfs.tfs[i+1].String())
|
||||
}
|
||||
fmt.Fprintf(&bb, "}")
|
||||
return bb.String()
|
||||
|
|
Loading…
Reference in a new issue