don't append to the original slice
parent
b3fac38501
commit
964f5b23b6
|
@ -165,7 +165,9 @@ func (self *CoordinatorImpl) runListSeriesQuery(querySpec *parser.QuerySpec, ser
|
|||
}
|
||||
seriesYielded := make(map[string]bool)
|
||||
|
||||
shards := append(shortTermShards, longTermShards...)
|
||||
var shards []*cluster.ShardData
|
||||
shards = append(shards, shortTermShards...)
|
||||
shards = append(shards, longTermShards...)
|
||||
|
||||
var err error
|
||||
for _, shard := range shards {
|
||||
|
|
Loading…
Reference in New Issue