Sha256: 6d2b3799b74103ccdd7390593b42c7b0d46acbc10d2ad36a6bb8e9d36c56f75c
Contents?: true
Size: 528 Bytes
Versions: 30
Compression:
Stored size: 528 Bytes
Contents
module Datadog module Contrib module Faraday # Handles installation of our middleware if the user has *not* # already explicitly configured it for this correction. # # RackBuilder class was introduced in faraday 0.9.0: # https://github.com/lostisland/faraday/commit/77d7546d6d626b91086f427c56bc2cdd951353b3 module RackBuilder def adapter(*args) use(:ddtrace) unless @handlers.any? { |h| h.klass == Middleware } super end end end end end
Version data entries
30 entries across 30 versions & 2 rubygems