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 +4 -4
- data/lib/vx/container_connector/docker.rb +1 -1
- data/lib/vx/container_connector/version.rb +1 -1
- data/spec/lib/docker_spec.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 80e313133002e035a790fbc4c959646eede71c12
|
4
|
+
data.tar.gz: b2893402881dd141d47667e66ab0992392b51254
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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)
|
data/spec/lib/docker_spec.rb
CHANGED
@@ -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/
|
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.
|
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-
|
11
|
+
date: 2014-02-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: docker-api
|