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) { if (scalar(@blockers) && !$noerr) {
die "Cannot live-migrate, snapshot (with RAM), or hibernate a VM with:" die "Cannot live-migrate, snapshot (with RAM), or hibernate a VM with: "
." @blockers\n"; . join(', ', @blockers) ."\n";
} }
return @blockers; return @blockers;