Skip to content

Commit

Permalink
Fix console output (elastic#4045)
Browse files Browse the repository at this point in the history
* fix missing return

(cherry picked from commit 18525be)
  • Loading branch information
glefloch authored and ruflin committed Apr 27, 2017
1 parent 9230633 commit afe1a17
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// Template, add newest changes here

=== Beats version HEAD
https://github.com/elastic/beats/compare/v5.3.1...master[Check the HEAD diff]
https://github.com/elastic/beats/compare/v5.3.2...master[Check the HEAD diff]

==== Breaking changes

Expand All @@ -28,6 +28,7 @@ https://github.com/elastic/beats/compare/v5.3.1...master[Check the HEAD diff]
==== Bugfixes

*Affecting all Beats*
- Fix console output {pull}4045[4045]

*Filebeat*

Expand Down
1 change: 1 addition & 0 deletions libbeat/outputs/console/console.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ func (c *console) PublishEvent(
}

op.SigCompleted(s)
return nil
fail:
if opts.Guaranteed {
logp.Critical("Unable to publish events to console: %v", err)
Expand Down

0 comments on commit afe1a17

Please sign in to comment.