]> git.proxmox.com Git - proxmox-backup.git/commit
server pull: fix comment w.r.t. initial downloaded chunk capacity
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 21 Apr 2022 13:54:59 +0000 (15:54 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 21 Apr 2022 13:55:03 +0000 (15:55 +0200)
commitf37d8540e11757348578dd18056ec16cc5385591
tree2ab17a695cac42b4b03750275083a86e59b1d930
parenteb1cd24e2174e5ee3e06580ee4558b4e698cd380
server pull: fix comment w.r.t. initial downloaded chunk capacity

> The hash set will be able to hold at least capacity elements
> without reallocating. If capacity is 0, the hash set will not
> allocate.
-- rustdoc, HashSet::with_capacity

So, the number we pass is the amount of chunk "IDs" we safe, which is
then 64Ki, not 16Ki and thus the size we can reference too is also
256 GiB, not 64 GiB.

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
src/server/pull.rs