Sha256: 370e5be9cf3f3fdc3ec5c32b4f6b075437c09165d6828e88b2e8e833486b20f3
Contents?: true
Size: 500 Bytes
Versions: 18
Compression:
Stored size: 500 Bytes
Contents
# encoding: utf-8 # This file is distributed under New Relic's license terms. # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details. # 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
18 entries across 18 versions & 1 rubygems