Skip to content

Commit 96d6f76

Browse files
authored
Update core/pkg/store/query.go
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
1 parent 9e68124 commit 96d6f76

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/pkg/store/query.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ func (s selector) SelectorMapToQuery() (indexId string, constraints []interface{
107107

108108
indexId = strings.TrimSuffix(indexId, "+")
109109
// Convert []string to []interface{}
110-
c := make([]interface{}, 0, len(qs)+1)
110+
c := make([]interface{}, 0, len(qs))
111111
for _, v := range qs {
112112
c = append(c, v)
113113
}

0 commit comments

Comments
 (0)