meroku 2.0.29 → 2.0.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/meroku/aws.rb +2 -1
- data/lib/meroku/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: c03aad7c4a74abcccadebb79e7342197b5d9f90d
|
|
4
|
+
data.tar.gz: a46ac52eb005bab416d01db545d3c79cb1bad642
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 215e50f4eb3a4c455bc46273a0fcb948df5fd68006f84f6c8aed26e92a67642cb0cd5cbb85aa9003386980d9d9f8375e629f98519345679ceab4284f9baf08e2
|
|
7
|
+
data.tar.gz: 7f415a04ce5f658478736b5055e6ff82499d6cbc1d18aa1b0ec9103a997d7bcb16a46936a5bf29afba66175de110e1c847dbec1c73393af34d3a9dc16c449c13
|
data/lib/meroku/aws.rb
CHANGED
|
@@ -30,12 +30,13 @@ module Meroku
|
|
|
30
30
|
end
|
|
31
31
|
|
|
32
32
|
def associate_address
|
|
33
|
+
sleep 15
|
|
33
34
|
Meroku::Shared.ec2_client.associate_address(
|
|
34
35
|
allocation_id: allocation_id, instance_id: instance_id
|
|
35
36
|
)
|
|
36
37
|
# TODO: stub this in tests
|
|
37
38
|
print '*'
|
|
38
|
-
sleep
|
|
39
|
+
sleep 25
|
|
39
40
|
print '*'
|
|
40
41
|
TCPSocket.new '34.239.241.218', 22
|
|
41
42
|
# Socket.tcp("www.meroku.com", 22, connect_timeout: 60) {}
|
data/lib/meroku/version.rb
CHANGED