spectre-rabbitmq 1.0.1 → 1.0.2

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/spectre/rabbitmq.rb +24 -4
  3. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 728c7accc4164192c368a6c860e96896eae2474307d334d33a7b8054cb46f13c
4
- data.tar.gz: 5f3cb737b966f2385fcc0857b1623f6c88c02621c18967ce1237d873a8217a67
3
+ metadata.gz: 9bffdc19ec3dca4e142983214b94548268bbc0a159588b681bab316f3eb2d8d4
4
+ data.tar.gz: e1169371920f3453a90e18a53fc58e601aa106aa98a54a9549755e3e18ddb4dc
5
5
  SHA512:
6
- metadata.gz: b223afcfaede8e1a8b3cae0f42a2981c2fc31bcebe6f84945bd45a2ad661604eadcd7f44cd00d48fb2156e0881a4e637d513a2f116b5353862afdcb75380e54c
7
- data.tar.gz: a238c1e737c6bcae75b976dd9ccf67901bfcde7a27187ffbb0e2efdaec1a5c30ff349b019427c47a20ed688757246b85f18a93baa1e3073190eda65ec4ef1bed
6
+ metadata.gz: ad9f37b8a465696219f951d5e310435585678ab326910a4f3406803b548729d76451799e57b7ac8016e27143d1303343bcf8154eb2e4d9c3e15255ceef9bcbef
7
+ data.tar.gz: f56dfb442e93f3b789780067dbe5e2fdf225059b9cd51e70b99c5074328355f56ddfef4bf7a87b7e45d6596f20ed57ad18222054c0a4a9efa2beddb8988c19d9
@@ -6,7 +6,7 @@ require 'bunny'
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
- @logger.info("get queue=#{queue.name}\ncorrelation_id: #{message.correlation_id}\nreply_to: #{message.reply_to}\n#{message.payload}")
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
- @logger.info("publish exchange=#{params.config['exchange']['name']} routing_key=#{routing_key} payload=\"#{params.config['payload']}\"")
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
- @logger.info("connect #{@config['username']}:*****@#{@config['host']}#{@config['virtual_host']} ssl=#{@config['ssl']}")
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.1
4
+ version: 1.0.2
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-04-25 00:00:00.000000000 Z
11
+ date: 2023-04-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: spectre-core