increase memory quota for Vagrant users

`make test_integrations` requires > 2Gi of memory
This commit is contained in:
Anton Kaliaev 2017-02-14 19:09:03 +04:00
parent 1275458c3f
commit b5bb1657d2
No known key found for this signature in database
GPG Key ID: 7B6881D965918214
1 changed files with 1 additions and 1 deletions

2
Vagrantfile vendored
View File

@ -5,7 +5,7 @@ Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.provider "virtualbox" do |v|
v.memory = 2048
v.memory = 3072
v.cpus = 2
end