Skip to content

Commit 804c222

Browse files
andyb-elasticjasontedor
authored andcommitted
[test] add fix for rare virtualbox error (#31212)
See the vagrant issue mentioned in this commit for details. This error has happened a couple times in packaging test CI builds with workers using virtualbox 5.2.10r122088
1 parent 942aa41 commit 804c222

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Vagrantfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,9 @@ def provision(config,
205205
# Give the box more memory and cpu because our tests are beasts!
206206
v.memory = Integer(ENV['VAGRANT_MEMORY'] || 8192)
207207
v.cpus = Integer(ENV['VAGRANT_CPUS'] || 4)
208+
209+
# see https://github.com/hashicorp/vagrant/issues/9524
210+
vbox.customize ["modifyvm", :id, "--audio", "none"]
208211
end
209212
config.vm.provision "dependencies", type: "shell", inline: <<-SHELL
210213
set -e

0 commit comments

Comments
 (0)