From 8f422a153d0ecd8c826937ed3756f58262302642 Mon Sep 17 00:00:00 2001 From: "C.R. Kirkwood-Watts" Date: Fri, 27 Mar 2020 16:29:11 -0700 Subject: [PATCH] Vagrantfile: Limit CPU count to 32 for VirtualBox hosts. VirtualBox can present up to 32 virtual CPUs to each virtual machine, which is less than detected on some processors. --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 73ae082e..7a646a94 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -44,7 +44,7 @@ Vagrant.configure(2) do |config| config.vagrant.plugins = "vagrant-sshfs" config.vm.provider "virtualbox" do |v| - v.cpus = cpus + v.cpus = [cpus, 32].min # virtualbox limit is 32 cpus v.memory = memory end