quietus 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -1
- data/lib/quietus/active_server.rb +3 -1
- data/lib/quietus/version.rb +1 -1
- data/spec/spec_helper.rb +2 -0
- 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: 69d55a9400454573f4a6550660de64a96009aef0
|
4
|
+
data.tar.gz: 0445fbc89479dabf542c8f870d85c27de2692917
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 475581080217de8a556383f6522f1bc3629b50b88f3a0e4f3264985b8a94616683072e207da6ea6608c545b2431b40d0f0419c2aed1510e3b1ca67c412972003
|
7
|
+
data.tar.gz: 231f62d2d6a163827935e1262b068ea5603bf01f984d0856f8a41fd405e69c5aa53e23fd1cf6a2f965ec371134bbfc42c801bde0ded6dcf18f4945db1172cc5d
|
data/README.md
CHANGED
@@ -52,6 +52,9 @@ don't want an ELB.
|
|
52
52
|
require 'quietus'
|
53
53
|
require 'aws-sdk'
|
54
54
|
|
55
|
+
# The server will not contact AWS unless the following is set:
|
56
|
+
ENV['APP_ENV'] == 'production'
|
57
|
+
|
55
58
|
# You'll need to get an auto_scaling_instance from the API
|
56
59
|
auto_scaling = AWS::AutoScaling.new
|
57
60
|
auto_scaling_instance = auto_scaling.instances['i-12345678']
|
@@ -71,4 +74,3 @@ end
|
|
71
74
|
**It's important to remember if your app simply crashes, using the active setup
|
72
75
|
the health check API won't get updated.**
|
73
76
|
|
74
|
-
|
data/lib/quietus/version.rb
CHANGED
data/spec/spec_helper.rb
CHANGED