config: non-migratable resource check: join blockers when printing them

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2024-11-18 21:47:19 +01:00
parent 9304dc09e5
commit 136eb3bce8

View File

@ -2573,8 +2573,8 @@ sub check_non_migratable_resources {
}
if (scalar(@blockers) && !$noerr) {
die "Cannot live-migrate, snapshot (with RAM), or hibernate a VM with:"
." @blockers\n";
die "Cannot live-migrate, snapshot (with RAM), or hibernate a VM with: "
. join(', ', @blockers) ."\n";
}
return @blockers;