Method: Fluent::Plugin::InHttpParser#parse

Defined in:
lib/fluent/plugin/in_http.rb

#parse(text) {|nil, nil| ... } ⇒ Object

Yields:

  • (nil, nil)


44
45
46
47
# File 'lib/fluent/plugin/in_http.rb', line 44

def parse(text)
  # this plugin is dummy implementation not to raise error
  yield nil, nil
end