[test] turn on host io cache for opensuse (#32053)

The hope is that this will resolve the problems with very slow io we're
seeing on this box in #30295
This commit is contained in:
Andy Bristol 2018-07-16 13:02:53 -07:00 committed by GitHub
parent ff8260c234
commit 69c85331b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

5
Vagrantfile vendored
View File

@ -115,6 +115,11 @@ Vagrant.configure(2) do |config|
'opensuse-42'.tap do |box|
config.vm.define box, define_opts do |config|
config.vm.box = 'elastic/opensuse-42-x86_64'
# https://github.com/elastic/elasticsearch/issues/30295
config.vm.provider 'virtualbox' do |vbox|
vbox.customize ['storagectl', :id, '--name', 'SATA Controller', '--hostiocache', 'on']
end
suse_common config, box
end
end