From 5e6eb987bc08ff8c9bac427924e8611425a97aa7 Mon Sep 17 00:00:00 2001 From: Jason Tedor Date: Tue, 23 Aug 2016 23:12:24 -0400 Subject: [PATCH] Correct Vagrant boxes memory allocation This commit corrects the memory allocation to the boxes uses for the Vagrant tests to actually be 3 GB (really, this is just an OCD-driven commit). --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index e540d72351b..fc148ee4443 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -79,7 +79,7 @@ Vagrant.configure(2) do |config| config.vm.synced_folder ".", "/elasticsearch" config.vm.provider "virtualbox" do |v| # Give the boxes 3GB because Elasticsearch defaults to using 2GB - v.memory = 3048 + v.memory = 3072 end if Vagrant.has_plugin?("vagrant-cachier") config.cache.scope = :box