Class: Slowpoke::Middleware

Inherits:
Object
  • Object
show all
Defined in:
lib/slowpoke/middleware.rb

Instance Method Summary collapse

Constructor Details

#initialize(app) ⇒ Middleware

Returns a new instance of Middleware.



3
4
5
# File 'lib/slowpoke/middleware.rb', line 3

def initialize(app)
  @app = app
end

Instance Method Details

#call(env) ⇒ Object



7
8
9
10
11
12
13
14
15
# File 'lib/slowpoke/middleware.rb', line 7

def call(env)
  @app.call(env)
ensure
  # extremely important
  # protect the process with a restart
  # https://github.com/heroku/rack-timeout/issues/39
  # can't do in timed_out state consistently
  Slowpoke.on_timeout.call(env) if env[Slowpoke::ENV_KEY]
end