This commit is contained in:
Aliaksandr Valialkin 2024-05-10 04:57:40 +02:00
parent 57afedbfe8
commit 68dfaa1449
No known key found for this signature in database
GPG key ID: 52C003EE2BCDB9EB

View file

@ -1129,6 +1129,7 @@ func (vd *valuesDict) unmarshal(src []byte) ([]byte, error) {
}
src = tail
// Do not use bytesutil.InternBytes(data) here, since it works slower than the string(data) in prod
v := string(data)
vd.values = append(vd.values, v)
}