Sha256: 6a2e0315819364ee17c65c3b880ef860447393c6ad05023c6c7752e08b4ec808
Contents?: true
Size: 512 Bytes
Versions: 32
Compression:
Stored size: 512 Bytes
Contents
# This file is distributed under New Relic's license terms. # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details. # frozen_string_literal: true # This class is used by NewRelic::Agent.set_sql_obfuscator to chain multiple # obfuscation blocks when not using the default :replace action class NewRelic::ChainedCall def initialize(block1, block2) @block1 = block1 @block2 = block2 end def call(sql) sql = @block1.call(sql) @block2.call(sql) end end
Version data entries
32 entries across 32 versions & 1 rubygems