From 87a2235742921921833be3b0809c7581c8b2426f Mon Sep 17 00:00:00 2001 From: Dan Hermann Date: Tue, 16 Jul 2019 07:59:10 -0500 Subject: [PATCH] remove extra brace from end of example command Fixes #10966 --- docs/static/java-codec.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/static/java-codec.asciidoc b/docs/static/java-codec.asciidoc index cfefc424a..0fd258d47 100644 --- a/docs/static/java-codec.asciidoc +++ b/docs/static/java-codec.asciidoc @@ -319,7 +319,7 @@ To test the plugin, start Logstash with: [source,java] ----- -echo "foo,bar" | bin/logstash -e 'input { java_stdin { codec => java_codec_example } } }' +echo "foo,bar" | bin/logstash -e 'input { java_stdin { codec => java_codec_example } }' ----- NOTE: The Java execution engine, the default execution engine since Logstash 7.0, is required