Skip to content

Commit f8cbc81

Browse files
andyb-elasticjasontedor
authored andcommitted
[test] add fix for rare virtualbox error (elastic#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 aa8aa0d commit f8cbc81

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
@@ -31,6 +31,9 @@ Vagrant.configure(2) do |config|
3131
# Give the box more memory and cpu because our tests are beasts!
3232
vbox.memory = Integer(ENV['VAGRANT_MEMORY'] || 8192)
3333
vbox.cpus = Integer(ENV['VAGRANT_CPUS'] || 4)
34+
35+
# see https://github.com/hashicorp/vagrant/issues/9524
36+
vbox.customize ["modifyvm", :id, "--audio", "none"]
3437
end
3538

3639
# Switch the default share for the project root from /vagrant to

0 commit comments

Comments
 (0)