logstash-input-azuretopic 0.9.5 → 0.9.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bff96ab704d2022e1acd6e570e1a5799786cf731
4
- data.tar.gz: a5dbe91b469f3837d40086f4b775058a84d86cb4
3
+ metadata.gz: 14fc1cc46490217fcc36e8f81d03d94235d48b0d
4
+ data.tar.gz: c43f4d232226749f22a41d514e1772742e3e9ffc
5
5
  SHA512:
6
- metadata.gz: 8636a2ae87ab2f3390e2f2090a268f6c7694d68659c73e3a2495d66e9962fdd6f123b138f11531493a5ff4f782fae0d961d3cba1ae3498eca8c2c4b76f644003
7
- data.tar.gz: 8f8c7a1ec144c369da617092ad6062817a753b1f890734ad5334745cebee5f3d03e1865362788d3eadbffea740e3d5b051aa0d9011a126a41c043a61685d0544
6
+ metadata.gz: e2397cd8293d82c4cb1e4d2d9451552de3f6e523411efc01144924009e23bcf3a7930a387a81e2315365f962efa1542dab8bc21d6bfb48533071eb025b2ceb53
7
+ data.tar.gz: e3e129fbde3f8b69bd27ab914d9b328d7a7920f01fd7c8f12cd0db68edddfac3c90e04cd46a9673f0bc057d62b294bffd1696f68fcee23daf5f7dd3ab3a4c6fa
@@ -36,6 +36,7 @@ class LogStash::Inputs::Azuretopic < LogStash::Inputs::Base
36
36
  message = @azure_service_bus.receive_subscription_message(@topic ,@subscription, { :peek_lock => true, :timeout => 1 } )
37
37
  if message
38
38
  codec.decode(message.body) do |event|
39
+ decorate(event)
39
40
  output_queue << event
40
41
  end # codec.decode
41
42
  @azure_service_bus.delete_subscription_message(message)
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-input-azuretopic'
3
- s.version = '0.9.5'
3
+ s.version = '0.9.6'
4
4
  s.licenses = ['Apache License (2.0)']
5
5
  s.summary = "This plugin reads messages from Azure Service Bus Topics."
6
6
  s.description = "This gem is a Logstash plugin. It reads messages from Azure Service Bus Topics."
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-input-azuretopic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.5
4
+ version: 0.9.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Microsoft Corporation
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-05-05 00:00:00.000000000 Z
11
+ date: 2016-12-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: logstash-core