We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ced446 commit f7a2978Copy full SHA for f7a2978
CHANGELOG.md
@@ -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
+
4
## 5.0.14
5
- - Update jackson deps to 2.9.5
6
VERSION
@@ -1 +1 @@
-5.0.14
+5.0.15
src/main/java/org/logstash/beats/BeatsHandler.java
@@ -21,7 +21,7 @@ public BeatsHandler(IMessageListener listener) {
21
22
@Override
23
public void channelActive(final ChannelHandlerContext ctx) throws Exception {
24
- context = ctx;
+ context = ctx;
25
if (logger.isTraceEnabled()){
26
logger.trace(format("Channel Active"));
27
}
0 commit comments