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).
This commit is contained in:
parent
e55581bb67
commit
5e6eb987bc
|
@ -79,7 +79,7 @@ Vagrant.configure(2) do |config|
|
||||||
config.vm.synced_folder ".", "/elasticsearch"
|
config.vm.synced_folder ".", "/elasticsearch"
|
||||||
config.vm.provider "virtualbox" do |v|
|
config.vm.provider "virtualbox" do |v|
|
||||||
# Give the boxes 3GB because Elasticsearch defaults to using 2GB
|
# Give the boxes 3GB because Elasticsearch defaults to using 2GB
|
||||||
v.memory = 3048
|
v.memory = 3072
|
||||||
end
|
end
|
||||||
if Vagrant.has_plugin?("vagrant-cachier")
|
if Vagrant.has_plugin?("vagrant-cachier")
|
||||||
config.cache.scope = :box
|
config.cache.scope = :box
|
||||||
|
|
Loading…
Reference in New Issue