Fix off-by-one bug in NewFingerprintFromMetric().
This commit is contained in:
parent
ca2a31c48b
commit
0230dbf305
|
@ -94,7 +94,7 @@ func NewFingerprintFromMetric(metric Metric) (f Fingerprint) {
|
||||||
firstCharacterOfFirstLabelName = labelName[0:1]
|
firstCharacterOfFirstLabelName = labelName[0:1]
|
||||||
}
|
}
|
||||||
if i == labelLength-1 {
|
if i == labelLength-1 {
|
||||||
lastCharacterOfLastLabelValue = string(labelValue[labelValueLength-2 : labelValueLength-1])
|
lastCharacterOfLastLabelValue = string(labelValue[labelValueLength-1 : labelValueLength])
|
||||||
}
|
}
|
||||||
|
|
||||||
summer.Write([]byte(labelName))
|
summer.Write([]byte(labelName))
|
||||||
|
|
|
@ -35,9 +35,16 @@ func testMetric(t test.Tester) {
|
||||||
"occupation": "robot",
|
"occupation": "robot",
|
||||||
"manufacturer": "westinghouse",
|
"manufacturer": "westinghouse",
|
||||||
},
|
},
|
||||||
rowkey: "04776841610193542734-f-56-o",
|
rowkey: "04776841610193542734-f-56-t",
|
||||||
hash: 4776841610193542734,
|
hash: 4776841610193542734,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
input: map[string]string{
|
||||||
|
"x": "y",
|
||||||
|
},
|
||||||
|
rowkey: "01306929544689993150-x-2-y",
|
||||||
|
hash: 1306929544689993150,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
for i, scenario := range scenarios {
|
for i, scenario := range scenarios {
|
||||||
|
|
Loading…
Reference in New Issue