vagrant-mcs 0.8.38 → 0.8.39

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c9592b215de03f1750da90e85beb184c21b897f5
4
- data.tar.gz: fd8e0f3bdbbb2808ceb39af6d1d3e8c94b065db0
3
+ metadata.gz: 6ee0c324a0da178caf24367b6c2f50abc008bc2b
4
+ data.tar.gz: 9f81d94e4e13947d9dcb5c279e6381fb476eb72f
5
5
  SHA512:
6
- metadata.gz: fffd0e06d0be99b52c3ca6c8b16791ed1e665464518d2362220c91016920548ea357e23fc3139cef3de56b9d6162b89e8a518bc82cc724eee5785115746c1b60
7
- data.tar.gz: 6877aaa02e20d7f4b4ae484a6f2acdb5c7a9dfc8d1fb8d4ddae2d648f35519fd5698e3271bb43cb6f45fa976755ac314ef89f479448d4b9888ac42b0c8521572
6
+ metadata.gz: 7b3182c9409c9b4501de369495b940091825d776e43a5896b35765a940cd5854d24b53bb10f24a5b8f6ca86c46e389743ea4ee61002deee5fa2d25268cb876a1
7
+ data.tar.gz: 9252c5cbbe8ac83722bf05a21032ae90478350deeb362021bc80fbd76fb5c2266800ab2843866f6234d563be73f61b81daefcf3fb6ae87c71e47e6df50efbf11
@@ -134,7 +134,7 @@ module VagrantPlugins
134
134
  b.use Provision
135
135
  b.use SyncedFolders
136
136
  b.use WarnNetworks
137
- b.use ElbRegisterInstance
137
+ #b.use ElbRegisterInstance
138
138
  end
139
139
  end
140
140
 
@@ -174,7 +174,7 @@ module VagrantPlugins
174
174
  end
175
175
 
176
176
  b2.use action_halt
177
- b2.use Call, WaitForState, :ready, 120 do |env2, b3|
177
+ b2.use Call, WaitForState, "ready", 120 do |env2, b3|
178
178
  if env2[:result]
179
179
  #b3.use action_up
180
180
  b3.use StartInstance
@@ -36,19 +36,19 @@ module VagrantPlugins
36
36
  tries = region_config.instance_ready_timeout / 2
37
37
 
38
38
  env[:ui].info(I18n.t("vagrant_mcs.waiting_for_ready"))
39
- begin
40
- retryable(:on => Fog::Errors::TimeoutError, :tries => tries) do
41
- # If we're interrupted don't worry about waiting
42
- next if env[:interrupted]
43
-
44
- # Wait for the server to be ready
45
- #server.wait_for(2) { ready? }
46
- end
47
- rescue Fog::Errors::TimeoutError
48
- # Notify the user
49
- raise Errors::InstanceReadyTimeout,
50
- timeout: region_config.instance_ready_timeout
51
- end
39
+ #begin
40
+ # retryable(:on => Fog::Errors::TimeoutError, :tries => tries) do
41
+ # # If we're interrupted don't worry about waiting
42
+ # next if env[:interrupted]
43
+ #
44
+ # # Wait for the server to be ready
45
+ # #server.wait_for(2) { ready? }
46
+ # end
47
+ #rescue Fog::Errors::TimeoutError
48
+ # # Notify the user
49
+ # raise Errors::InstanceReadyTimeout,
50
+ # timeout: region_config.instance_ready_timeout
51
+ #end
52
52
  end
53
53
  rescue Fog::Compute::MCS::Error => e
54
54
  raise Errors::FogError, :message => e.message
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module MCS
3
- VERSION = '0.8.38'
3
+ VERSION = '0.8.39'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-mcs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.38
4
+ version: 0.8.39
5
5
  platform: ruby
6
6
  authors:
7
7
  - yangchangsheng