skip the size var

This commit is contained in:
Xander Flood 2019-11-09 07:03:15 -05:00
parent 0c39299bad
commit cfb13bb532

View file

@ -78,6 +78,9 @@ func getLabelMapForPartialKey(attrs map[string]string, partialKey string) map[st
var labelMap = map[string]string{}
for _, id := range setIDs {
if id == "#" {
continue
}
prefix := partialKey + "." + id
labelMap[attrs[prefix+".label"]] = attrs[prefix+".value"]
}