autocanary24 0.4.3 → 0.4.4
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/CHANGELOG.md +6 -0
- data/lib/autocanary24/client.rb +1 -1
- data/lib/autocanary24/version.rb +1 -1
- 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: e39e37326cccf589ec1aec5f7b0e610d491ef05f
|
|
4
|
+
data.tar.gz: ae08a5c37e47af8aeb5fe814c42659ed3a050e3b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b528c78cf8237e228aca11c01d3f1f2e1f2cb3b60df14728db081b4b586fc51c400b9f3835553beab7d0bc35e691db491c8f880ffaa37b959ee6a1afdf915276
|
|
7
|
+
data.tar.gz: 2566ae27b9cf8faba15f7aa054eb784dbf9d7ed631e78f74cb8cfd9de36c03295aa46b95effb85605de3468ed0219ddbd345351b38071bb591983502b43c28ac
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
0.4.4 (2017-03-15)
|
|
2
|
+
------------------
|
|
3
|
+
* Issue - Fails to rollback if no new instances were attached to ELB
|
|
4
|
+
|
|
5
|
+
See [related GitHub pull request #11](https://github.com/AutoScout24/autocanary24/pull/11) and [related GitHub issue #12](https://github.com/AutoScout24/autocanary24/issues/12).
|
|
6
|
+
|
|
1
7
|
0.4.3 (2017-01-16)
|
|
2
8
|
------------------
|
|
3
9
|
* Issue - Unable to deploy stack with higher AutoScalingGroup min-size than the currently running one
|
data/lib/autocanary24/client.rb
CHANGED
|
@@ -152,7 +152,7 @@ module AutoCanary24
|
|
|
152
152
|
write_log("", "Rollback triggered")
|
|
153
153
|
begin
|
|
154
154
|
stacks[:stack_to_create].detach_instances_from_elb(elb, already_attached_instances)
|
|
155
|
-
stacks[:stack_to_delete].attach_instances_to_elb_and_wait(elb, already_detached_instances) unless stacks[:stack_to_delete].nil?
|
|
155
|
+
stacks[:stack_to_delete].attach_instances_to_elb_and_wait(elb, already_detached_instances) unless stacks[:stack_to_delete].nil? || already_detached_instances.empty?
|
|
156
156
|
rescue Exception => e
|
|
157
157
|
write_log("", "ROLLBACK FAILED: #{e}")
|
|
158
158
|
end
|
data/lib/autocanary24/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: autocanary24
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Philipp Garbe
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-03-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: autostacker24
|