Method: Faraday::Request::Instrumentation#call

Defined in:
lib/faraday/request/instrumentation.rb

#call(env) ⇒ Object

Parameters:



49
50
51
52
53
# File 'lib/faraday/request/instrumentation.rb', line 49

def call(env)
  @instrumenter.instrument(@name, env) do
    @app.call(env)
  end
end