mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-31 15:06:26 +00:00
Merge branch 'public-single-node' into victorialogs-wip
This commit is contained in:
commit
8c394eb841
1 changed files with 1 additions and 2 deletions
|
@ -71,8 +71,7 @@ func unmarshalInt64NearestDelta2(dst []int64, src []byte, firstValue int64, item
|
|||
}
|
||||
|
||||
dstLen := len(dst)
|
||||
dst = slicesutil.ExtendCapacity(dst, itemsCount)
|
||||
dst = dst[:dstLen+itemsCount]
|
||||
dst = slicesutil.SetLength(dst, dstLen+itemsCount)
|
||||
as := dst[dstLen:]
|
||||
|
||||
v := firstValue
|
||||
|
|
Loading…
Reference in a new issue