vx-container_connector 0.4.0 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8019136ae3658b82fa3406261fc1cd106ff6a829
4
- data.tar.gz: 9c51c579ef9f509a16503c2ce3bb6613803e071f
3
+ metadata.gz: 80e313133002e035a790fbc4c959646eede71c12
4
+ data.tar.gz: b2893402881dd141d47667e66ab0992392b51254
5
5
  SHA512:
6
- metadata.gz: ee034e7a7630b606f8938c3488998993a1123dee62687d76ada463cee16085a878359eadb8c6779e8188053d7a0ff30d2f26e7751b0a886253593ccbef14abd3
7
- data.tar.gz: 7951f243a49fd38dd66c5bec9e43f5698503e343488c6b037981aa36b7b38576338aa8233e7f3dd548b0b8f96080a5d539c517c56f54c1609c1d57c0faf19da9
6
+ metadata.gz: 4de00fc5695d1e77d0f69862b89a6a5807bed0330fdc6f8810e41afc6001d9274c990c4434d34dc9c9d113bc2dc523b90555dd79090763724c5674cf4a516bda
7
+ data.tar.gz: 3602213f4dcf905399646b96c9b6d3563840bf55d4fab99164288e214a00384c83edcea80b2d9d2b815f65a7edf4b325fb79c22d940ce7c1e3251595f043d857
@@ -59,7 +59,7 @@ module Vx
59
59
  ssh_host: host
60
60
  }
61
61
 
62
- with_retries ::Net::SSH::AuthenticationFailed, limit: 3, sleep: 3 do
62
+ with_retries ::Net::SSH::AuthenticationFailed, Errno::ECONNREFUSED, limit: 3, sleep: 3 do
63
63
  instrument("starting_ssh_session", instrumentation)
64
64
  open_ssh(host, user, ssh_options) do |ssh|
65
65
  yield Spawner.new(container, ssh, remote_dir)
@@ -1,5 +1,5 @@
1
1
  module Vx
2
2
  module ContainerConnector
3
- VERSION = "0.4.0"
3
+ VERSION = "0.4.1"
4
4
  end
5
5
  end
@@ -32,8 +32,8 @@ describe Vx::ContainerConnector::Docker do
32
32
  context "image" do
33
33
  subject { conn.image }
34
34
 
35
- it "by default should eq 'dmexe/precise'" do
36
- expect(subject).to eq 'dmexe/precise'
35
+ it "by default should eq 'dmexe/vexor-recise-full'" do
36
+ expect(subject).to eq 'dmexe/vexor-precise-full'
37
37
  end
38
38
 
39
39
  it "when passed via options should be" do
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vx-container_connector
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dmitry Galinsky
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-02-08 00:00:00.000000000 Z
11
+ date: 2014-02-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: docker-api