Sha256: 9abd36795ee257db734eaaa2a5b20daf36b6733e68f3f13aa8262dce0b04f8aa
Contents?: true
Size: 327 Bytes
Versions: 87
Compression:
Stored size: 327 Bytes
Contents
# 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
87 entries across 87 versions & 5 rubygems