spectre-rabbitmq 1.0.1 → 1.0.3
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/spectre/rabbitmq.rb +25 -5
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bb9a0aa9e333b3d5088a6ff5d5f963dccc78e055aac5715aa409e4fe1f4513da
|
4
|
+
data.tar.gz: c7d2516a0bfa90f144dd05bc0c575cc2cbb96bd9a7d97c4230c3b3b6bd31ad78
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3e07714fcae49f6f51604dda155e00397099d807a583c94ecbbfd6104b402f1834ef0cdea8385f39e260e432fe0d8433a77ac77510ba6c5e7013ab8791629ad8
|
7
|
+
data.tar.gz: e2a0936817a5ee7dbacf97f381fcbe34c9f8db63d4bc00076e1546167970186c05225e6ce2d71a7291576c9e07b22a315bb54136ebcb38974e002bf7c8971889
|
data/lib/spectre/rabbitmq.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
require 'spectre'
|
2
|
-
require 'spectre/
|
2
|
+
require 'spectre/logging'
|
3
3
|
require 'ostruct'
|
4
4
|
require 'bunny'
|
5
5
|
|
6
6
|
|
7
7
|
module Spectre
|
8
8
|
module RabbitMQ
|
9
|
-
class ActionParamsBase
|
9
|
+
class ActionParamsBase < Spectre::DslClass
|
10
10
|
attr_reader :config
|
11
11
|
|
12
12
|
def initialize config, logger
|
@@ -35,6 +35,10 @@ module Spectre
|
|
35
35
|
def routing_key name
|
36
36
|
@config['routing_keys'] << name
|
37
37
|
end
|
38
|
+
|
39
|
+
def no_log!
|
40
|
+
@config['no_log'] = true
|
41
|
+
end
|
38
42
|
end
|
39
43
|
|
40
44
|
class ConsumeActionParams < ActionParamsBase
|
@@ -168,7 +172,14 @@ module Spectre
|
|
168
172
|
|
169
173
|
while @messages.count < params.config['messages']
|
170
174
|
message = message_queue.pop
|
171
|
-
|
175
|
+
|
176
|
+
payload_message = message.payload
|
177
|
+
|
178
|
+
if params.config['no_log'] == true
|
179
|
+
payload_message = '[...]'
|
180
|
+
end
|
181
|
+
|
182
|
+
@logger.info("get queue=#{queue.name}\ncorrelation_id: #{message.correlation_id}\nreply_to: #{message.reply_to}\n#{payload_message}")
|
172
183
|
@messages << message
|
173
184
|
end
|
174
185
|
end
|
@@ -200,7 +211,13 @@ module Spectre
|
|
200
211
|
reply_to: params.config['reply_to']
|
201
212
|
)
|
202
213
|
|
203
|
-
|
214
|
+
payload_message = params.config['payload']
|
215
|
+
|
216
|
+
if params.config['no_log'] == true
|
217
|
+
payload_message = '[...]'
|
218
|
+
end
|
219
|
+
|
220
|
+
@logger.info("publish exchange=#{params.config['exchange']['name']} routing_key=#{routing_key} payload=\"#{payload_message}\"")
|
204
221
|
end
|
205
222
|
|
206
223
|
def await!
|
@@ -212,7 +229,10 @@ module Spectre
|
|
212
229
|
def connect
|
213
230
|
return unless @conn.nil?
|
214
231
|
|
215
|
-
|
232
|
+
vhost = @config['virtual_host']
|
233
|
+
vhost = '/' + vhost unless vhost.start_with? '/'
|
234
|
+
|
235
|
+
@logger.info("connect #{@config['username']}:*****@#{@config['host']}#{vhost} ssl=#{@config['ssl']}")
|
216
236
|
|
217
237
|
@conn = Bunny.new(
|
218
238
|
host: @config['host'],
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spectre-rabbitmq
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Christian Neubauer
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-09-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: spectre-core
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 1.14.
|
19
|
+
version: 1.14.3
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 1.14.
|
26
|
+
version: 1.14.3
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: bunny
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|