Skip to content

Commit

Permalink
Correct Vagrant boxes memory allocation
Browse files Browse the repository at this point in the history
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).
  • Loading branch information
jasontedor committed Aug 24, 2016
1 parent e55581b commit 5e6eb98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Vagrantfile
Expand Up @@ -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
Expand Down

0 comments on commit 5e6eb98

Please sign in to comment.