fluent-plugin-amq 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c27e1cedbf9f1527a8d39eb855caafaf8e23f083
4
- data.tar.gz: a26500e8750f7e6ea29736dd59835994508371c0
3
+ metadata.gz: cbfc8f05ff186e6a7a6b51e1def230d016185d2d
4
+ data.tar.gz: d2f94f10d607744c620a30bef43baa47dfc27576
5
5
  SHA512:
6
- metadata.gz: 647063758ac5d1a9ce69580b3c46e1f155eee7daef561e33347310fbf53450d945232f1bd0e0ace461e86fc7ddb1ac58851f1761b01c3e761081a92f93899ab7
7
- data.tar.gz: 1a5b2ffa8f3d98792f008a624d4baabe2e041d66f623c1e3cf403bbdbcbd6f3fd19be3e0dd927d77362b4d5b0e1952e46b5c3f0401bba06afb5a6a8b9ca708cf
6
+ metadata.gz: 5e63728cdc6108b9c20be519102fbc5e591ff5aec05004b4f1c4e135730f08b4cea20a7f3e0e24f2640e4e9e2dc7b1a86f721132631883211ca7ee5af07f0328
7
+ data.tar.gz: 0022d4437bd9c0b59afc271abb16a92b53bf0d5fb794858331a10f7252f57874458d9f46f6d4ba99925466d994c09f17ac67b183789574547d4e2e9c78eeb215
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "fluent-plugin-amq"
6
- s.version = "0.0.5"
6
+ s.version = "0.0.6"
7
7
  s.authors = ["Anton Sherkhonov"]
8
8
  s.email = ["sherkhonov@gmail.com"]
9
9
  s.homepage = "https://github.com/t0ffel/fluent-plugin-amq"
@@ -31,7 +31,11 @@ module Fluent
31
31
  raise ConfigError, "#{NAME}: '#{@cert}' file is missing" unless File.file?(@cert)
32
32
  raise ConfigError, "#{NAME}: '#{@private_key}' file is missing" unless File.file?(@private_key)
33
33
  @ssl_domain = Qpid::Proton::SSLDomain.new(Qpid::Proton::SSLDomain::MODE_CLIENT)
34
- @ssl_domain.credentials(@cert, @private_key, @key_pass)
34
+ begin
35
+ @ssl_domain.credentials(@cert, @private_key, @key_pass)
36
+ rescue Exception => e
37
+ raise ConfigError, "#{NAME}: Unable to create credentials: #{e}"
38
+ end
35
39
  begin
36
40
  @url = Qpid::Proton::uri @url
37
41
  rescue Exception => e
@@ -90,12 +94,16 @@ module Fluent
90
94
  @log.debug "Connection secured with #{c.transport.ssl.protocol_name.inspect}"
91
95
  end
92
96
 
93
- def build_json_record(message)
94
- record = {
95
- body: JSON.parse(message.body),
96
- address: message.address,
97
- msg_id: message.id
98
- }
97
+ def build_record(message)
98
+ begin
99
+ body = JSON.parse(message.body)
100
+ rescue => e
101
+ @log.warn "Error decoding JSON from the body of `#{message}`"
102
+ body = message.body
103
+ end
104
+ record = { body: body,
105
+ address: message.address,
106
+ msg_id: message.id }
99
107
  record[:properties] = message.properties if (message.properties and message.properties.size > 0)
100
108
  record[:annotations] = message.annotations if (message.annotations and message.annotations.size > 0)
101
109
  record[:instructions] = message.instructions if (message.instructions and message.instructions.size > 0)
@@ -107,16 +115,6 @@ module Fluent
107
115
  record
108
116
  end
109
117
 
110
- def build_record(message)
111
- begin
112
- record = build_json_record(message)
113
- rescue => e
114
- @log.warn "Error decoding JSON from the body of `#{message}`"
115
- record = { body: message }
116
- end
117
- record
118
- end
119
-
120
118
  def on_message(delivery, message)
121
119
  record = build_record(message)
122
120
  time = Engine.now
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-amq
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anton Sherkhonov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-04-05 00:00:00.000000000 Z
11
+ date: 2018-04-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake