docker-api 1.21.3 → 1.21.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/docker/container.rb +2 -1
- data/lib/docker/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 01b22b7c07b68da5ef7636e62a9bd616bee56bd0
|
4
|
+
data.tar.gz: 43478a354659ca1b4470b6e48a6af49309db6910
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d0b1313db76caad1ce1dd1fdc3cea840bc954ebded6e7a607e0918f2bf21f3f11f7dbf76661a960d5218d14216f70ef6197857d45a6fe79a0ee2556667ae478d
|
7
|
+
data.tar.gz: c3cac5cea78c44cef53a8b7c0da31db8a31c5e915957d9f89fad3c48669219c156c6a868bff7bf1ba183da93e4d08c71cb35196d08e1f07872ec5d8c39a0aaca
|
data/lib/docker/container.rb
CHANGED
@@ -16,7 +16,8 @@ class Docker::Container
|
|
16
16
|
# Wait for the current command to finish executing. Default wait time is
|
17
17
|
# `Excon.options[:read_timeout]`.
|
18
18
|
def wait(time = nil)
|
19
|
-
|
19
|
+
excon_params = { :read_timeout => time, :idempotent => true }
|
20
|
+
resp = connection.post(path_for(:wait), nil, excon_params)
|
20
21
|
Docker::Util.parse_json(resp)
|
21
22
|
end
|
22
23
|
|
data/lib/docker/version.rb
CHANGED