class Fluent::PluginHelper::HttpServer::Router::NotFoundApp
Public Class Methods
call(req)
click to toggle source
# File lib/fluent/plugin_helper/http_server/router.rb, line 24 def self.call(req) [404, { 'Content-Type' => 'text/plain' }, "404 Not Found\n"] end