From 6965d5d1f855f78f41176e8190a4b1e28222a54a Mon Sep 17 00:00:00 2001 From: Wolfgang Link Date: Mon, 14 Sep 2015 08:44:27 +0200 Subject: [PATCH] fix error message: allocate to much v-CPUs. --- PVE/QemuServer.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/QemuServer.pm b/PVE/QemuServer.pm index be4d3d96..a6a89c09 100644 --- a/PVE/QemuServer.pm +++ b/PVE/QemuServer.pm @@ -2799,7 +2799,7 @@ sub config_to_command { my $allowed_vcpus = $cpuinfo->{cpus}; - die "MAX $maxcpus vcpus allowed per VM on this node\n" + die "MAX $allowed_vcpus vcpus allowed per VM on this node\n" if ($allowed_vcpus < $maxcpus); push @$cmd, '-smp', "$vcpus,sockets=$sockets,cores=$cores,maxcpus=$maxcpus";