Skip to content

Commit f7a2978

Browse files
committed
Version Bump to 5.0.15
Fixes #321
1 parent 4ced446 commit f7a2978

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 5.0.15
2+
- [Ensure that context is available before trace is made](https://github.com/logstash-plugins/logstash-input-beats/pull/319/files)
3+
14
## 5.0.14
25
- - Update jackson deps to 2.9.5
36

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.0.14
1+
5.0.15

src/main/java/org/logstash/beats/BeatsHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public BeatsHandler(IMessageListener listener) {
2121

2222
@Override
2323
public void channelActive(final ChannelHandlerContext ctx) throws Exception {
24-
context = ctx;
24+
context = ctx;
2525
if (logger.isTraceEnabled()){
2626
logger.trace(format("Channel Active"));
2727
}

0 commit comments

Comments
 (0)