mirror of
https://git.proxmox.com/git/qemu-server
synced 2025-05-28 14:18:18 +00:00
vzdump: log 100% percent in case $target is 0
When $target is 0, that means we don't have to upload any data, in which case we're immediately done. Otherwise incremental backups with no changes display a really weird status: 0% (0.0 B of 0.0 B), duration 0, read: 0 B/s, write: 0 B/s when they're actually done already. Signed-off-by: Stefan Reiter <s.reiter@proxmox.com>
This commit is contained in:
parent
8825248c43
commit
0f6c69814b
@ -340,7 +340,7 @@ my $query_backup_status_loop = sub {
|
||||
$target = $total if !$has_query_bitmap;
|
||||
$transferred = $status->{transferred} || 0;
|
||||
$reused = $status->{reused};
|
||||
my $percent = $target ? int(($transferred * 100)/$target) : 0;
|
||||
my $percent = $target ? int(($transferred * 100)/$target) : 100;
|
||||
my $zero = $status->{'zero-bytes'} || 0;
|
||||
|
||||
die "got unexpected uuid\n" if !$status->{uuid} || ($status->{uuid} ne $job_uuid);
|
||||
|
Loading…
Reference in New Issue
Block a user