class StoreRequestId::BlueGreenMiddleware
Inject BG Header and store also on StoreRequestId
accessor
Public Class Methods
new(app)
click to toggle source
# File lib/store_request_id/blue_green_middleware.rb, line 10 def initialize(app) @app = app end
Public Instance Methods
call(env)
click to toggle source
# File lib/store_request_id/blue_green_middleware.rb, line 6 def call(env) Process.new(env).call(@app) end