ironfan 4.8.0 → 4.8.1

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.
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ # v4.8.1
2
+ * ec2::machine: increasing wait interval, to reduce potential for intermittent errors to bomb run
3
+
1
4
  # v4.8.0
2
5
  * Cleaning up Gemfile and Gemfile.lock to solidify dependencies
3
6
 
data/Gemfile CHANGED
@@ -6,8 +6,7 @@ gem 'formatador', "~> 0.2"
6
6
  gem 'gorillib', "~> 0.4.2"
7
7
 
8
8
  # Everything in the world is being a stupid dick about JSON versions. Pin it
9
- # to the one that doesn't seem to angrify everyone. Note: pins chef to the
10
- # 10.16 branch.
9
+ # to the one that doesn't seem to angrify everyone.
11
10
  gem 'json', "= 1.5.4"
12
11
 
13
12
  group :development do
data/VERSION CHANGED
@@ -1 +1 @@
1
- 4.8.0
1
+ 4.8.1
data/ironfan.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "ironfan"
8
- s.version = "4.8.0"
8
+ s.version = "4.8.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Infochimps"]
12
- s.date = "2013-02-14"
12
+ s.date = "2013-02-15"
13
13
  s.description = "Ironfan allows you to orchestrate not just systems but clusters of machines. It includes a powerful layer on top of knife and a collection of cloud cookbooks."
14
14
  s.email = "coders@infochimps.com"
15
15
  s.extra_rdoc_files = [
@@ -161,7 +161,13 @@ module Ironfan
161
161
  computer.machine = machine
162
162
  remember machine, :id => computer.name
163
163
 
164
- fog_server.wait_for { ready? }
164
+ # AWS sometimes takes too long to respond for this block's liking.
165
+ # Expand its wait interval, so that it doesn't just bomb out
166
+ # after three quick failures in succession.
167
+ # For more info, see:
168
+ # - http://rubydoc.info/gems/fog/1.9.0/Fog/Model#wait_for-instance_method
169
+ # - https://github.com/fog/fog/blob/master/lib/fog/core/wait_for.rb
170
+ fog_server.wait_for(Fog.timeout, 5) { ready? }
165
171
  end
166
172
 
167
173
  # tag the computer correctly
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: ironfan
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 4.8.0
5
+ version: 4.8.1
6
6
  platform: ruby
7
7
  authors:
8
8
  - Infochimps
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2013-02-14 00:00:00 Z
13
+ date: 2013-02-15 00:00:00 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: chef
@@ -284,7 +284,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
284
284
  requirements:
285
285
  - - ">="
286
286
  - !ruby/object:Gem::Version
287
- hash: -1301512944753891997
287
+ hash: -312595991163601203
288
288
  segments:
289
289
  - 0
290
290
  version: "0"