From 042feafcad93a974c52c1613a07cfafa761584f5 Mon Sep 17 00:00:00 2001 From: Andrew Cholakian Date: Tue, 22 May 2018 13:55:22 -0500 Subject: [PATCH] Some QA builds are exiting due to an inability to allocate heap. We should just bump the available memory to 4GB, which is plenty reasonable, as a starting point. See https://logstash-ci.elastic.co/job/elastic+logstash+6.x+multijob-acceptance/label=metal,suite=redhat/84/console for an example Fixes #9640 --- qa/Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/Vagrantfile b/qa/Vagrantfile index b7da73064..457b89cf4 100644 --- a/qa/Vagrantfile +++ b/qa/Vagrantfile @@ -9,7 +9,7 @@ Vagrant.configure(2) do |config| config.vm.define platform.name do |machine| machine.vm.box = platform.box machine.vm.provider "virtualbox" do |v| - v.memory = 2096 + v.memory = 4096 v.cpus = 4 end machine.vm.synced_folder "../build", "/logstash-build", create: true