From cba2b7c1d4b8cf58c5ec570e5fbf13a454d062a9 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Fri, 9 Apr 2021 12:49:55 +0200 Subject: [PATCH] prune backups: improve internal errors messages slightly Signed-off-by: Thomas Lamprecht --- PVE/Storage/Plugin.pm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/PVE/Storage/Plugin.pm b/PVE/Storage/Plugin.pm index 158e369..d7136a1 100644 --- a/PVE/Storage/Plugin.pm +++ b/PVE/Storage/Plugin.pm @@ -1249,8 +1249,9 @@ sub prune_backups { $prune_entry->{vmid} = $backup_vmid if defined($backup_vmid); if ($archive_info->{is_std_name}) { - die "internal error - got no vmid\n" if !defined($backup_vmid); - die "internal error - got wrong vmid\n" if defined($vmid) && $backup_vmid ne $vmid; + die "internal error - got no VMID\n" if !defined($backup_vmid); + die "internal error - got wrong VMID '$backup_vmid' != '$vmid'\n" + if defined($vmid) && $backup_vmid ne $vmid; $prune_entry->{ctime} = $archive_info->{ctime}; my $group = "$backup_type/$backup_vmid"; -- 2.39.5