Skip to content

Commit

Permalink
Add missing call to decorate event
Browse files Browse the repository at this point in the history
  • Loading branch information
robbavey committed Aug 10, 2017
1 parent 7ae54d1 commit 69dd5b9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.0.6
- Added support for 'add-field' and 'tags'

## 1.0.5
- Internal: Fixed Continuous Integration errors

Expand Down
1 change: 1 addition & 0 deletions lib/logstash/inputs/dead_letter_queue.rb
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ def run(logstash_queue)
event.set("[@metadata][dead_letter_queue][plugin_id]", entry.plugin_id)
event.set("[@metadata][dead_letter_queue][reason]", entry.reason)
event.set("[@metadata][dead_letter_queue][entry_time]", entry.entry_time)
decorate(event)
logstash_queue << event
end
end # def run
Expand Down
2 changes: 1 addition & 1 deletion logstash-input-dead_letter_queue.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = 'logstash-input-dead_letter_queue'
s.version = '1.0.5'
s.version = '1.0.6'
s.licenses = ['Apache License (2.0)']
s.summary = 'Logstash input to read dead lettered events'
s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
Expand Down

0 comments on commit 69dd5b9

Please sign in to comment.