autostacker24 1.0.44 → 1.0.45
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/autostacker24/stacker.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: 99aa62182fdfd0ad454bc66b601f3b96413af369
|
4
|
+
data.tar.gz: 1b88a3859ad19ac50642ca4d33face79565ce994
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f5f55a009de8d07cd279cf499aec1b04162f028722d4c0822c6763d9ad94f35e253896213febfb8dc8d9365df66223338e69d03c28704b24083e99697e5594f1
|
7
|
+
data.tar.gz: afb42a42a826e9a54a0c68186ca65261b4f583009fa592ec8b64f3698030956341fe0e864649e99747d42d759d8c864ad9e3b63cf63b35c9c86d889c8e37b28e
|
@@ -101,7 +101,7 @@ module Stacker
|
|
101
101
|
end
|
102
102
|
return true if status =~ expected_status
|
103
103
|
raise "#{operation} #{stack_name} failed, current status #{status}" if status =~ finished
|
104
|
-
get_stack_events(stack_name).select{!seen_events.include?(e[:event_id]) }
|
104
|
+
get_stack_events(stack_name).select{|e| !seen_events.include?(e[:event_id]) }
|
105
105
|
.sort_by{|e| e[:timestamp]}
|
106
106
|
.each{
|
107
107
|
|e| seen_events << e[:event_id]
|