Adds tests for connection loss exception handling, and unretryable SQL exceptions

This commit is contained in:
Karl Southern
2016-06-29 18:48:12 +01:00
parent 7d699e400c
commit ab566ee969
6 changed files with 76 additions and 23 deletions

6
Vagrantfile vendored
View File

@@ -6,7 +6,11 @@ Vagrant.configure(2) do |config|
config.vm.synced_folder '.', '/vagrant', type: :virtualbox
config.vm.provision 'shell', inline: <<-EOP
apt-get install git -y -q
echo "deb http://ftp.debian.org/debian jessie-backports main" | tee --append /etc/apt/sources.list > /dev/null
sed -i 's/main/main contrib non-free/g' /etc/apt/sources.list
apt-get update
apt-get remove openjdk-7-jre-headless -y -q
apt-get install git openjdk-8-jre -y -q
gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
curl -sSL https://get.rvm.io | bash -s stable --ruby=jruby-1.7
usermod -a -G rvm vagrant