module Sidekiq::Rescue

def configure

Other tags:
    Yieldparam: config - The configuration object.

Returns:
  • (void) -
def configure
  @mutex.synchronize do
    config = @config.dup
    yield(config)
    @config = config.freeze
  end
end