Sha256: 874e0073276591907ed1e41205ca971ac983ff9a9009eef9128840d52e3351b7
Contents?: true
Size: 344 Bytes
Versions: 39
Compression:
Stored size: 344 Bytes
Contents
# encoding: utf-8 # This class is used by OneApm::Manager.set_sql_obfuscator to chain multiple # obfuscation blocks when not using the default :replace action class OneApm::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
39 entries across 39 versions & 1 rubygems