mirror of
https://gitea.invidious.io/iv-org/shard-kemal.git
synced 2024-08-15 00:53:36 +00:00
fix process request when a response already closed (#550)
This commit is contained in:
parent
ff3b28c6f7
commit
e99129ab50
2 changed files with 19 additions and 0 deletions
|
@ -45,6 +45,7 @@ module Kemal
|
|||
# Processes the route if it's a match. Otherwise renders 404.
|
||||
private def process_request(context)
|
||||
raise Kemal::Exceptions::RouteNotFound.new(context) unless context.route_found?
|
||||
return if context.response.closed?
|
||||
content = context.route.handler.call(context)
|
||||
|
||||
if !Kemal.config.error_handlers.empty? && Kemal.config.error_handlers.has_key?(context.response.status_code)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue