cfn-bridge 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/cloud_formation/bridge/cli.rb +3 -1
- data/lib/cloud_formation/bridge/version.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: 5041296bde2dd9f541031c7f19c9df946e73f7df
|
4
|
+
data.tar.gz: 2edf37824a5527c4deb0d325d63bb8bceebef7f2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c7168e1de1087534ca7a43faeaa77f7278d4f4b10f36776ff127ee9169be17737b59cd68450a82514324ed783ef265aa83b5de28a6500bd75dc6834e6bccf705
|
7
|
+
data.tar.gz: a0cd9945e4eb9a63477100b5ee69422b5d1707dff3e7a055ca8bcb92818fb29d8bb98a568a4c46798ed818fb98712d61a108e25bb127f55b635357d345e37772
|
@@ -1,5 +1,6 @@
|
|
1
1
|
require 'thor'
|
2
2
|
require 'cloud_formation/bridge/poller'
|
3
|
+
require 'cloud_formation/bridge/util'
|
3
4
|
|
4
5
|
module CloudFormation
|
5
6
|
module Bridge
|
@@ -7,7 +8,8 @@ module CloudFormation
|
|
7
8
|
|
8
9
|
desc "start QUEUE_NAME", "Starts watching this specific SQS queue"
|
9
10
|
def start(queue_name)
|
10
|
-
|
11
|
+
STDOUT.sync = true
|
12
|
+
poller = CloudFormation::Bridge::Poller.new(queue_name, Util::LOGGER)
|
11
13
|
poller.start
|
12
14
|
end
|
13
15
|
|