We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24f08be commit 2078284Copy full SHA for 2078284
lib/fluent/plugin/parser_json.rb
@@ -52,8 +52,8 @@ def configure_json_parser(name)
52
when :oj
53
return [Oj.method(:load), Oj::ParseError] if Fluent::OjOptions.available?
54
55
- log&.info "Oj is not installed, and failing back to Yajl for json parser"
56
- configure_json_parser(:yajl)
+ log&.info "Oj is not installed, and failing back to JSON for json parser"
+ configure_json_parser(:json)
57
when :json then [JSON.method(:load), JSON::ParserError]
58
when :yajl then [Yajl.method(:load), Yajl::ParseError]
59
else
0 commit comments