Sha256: 91737feaa36295692afff82e5e1156fd951acdd9f35e3e035b719cfa2a69dde5
Contents?: true
Size: 475 Bytes
Versions: 5
Compression:
Stored size: 475 Bytes
Contents
# frozen_string_literal: true # :nocov: require_relative "./custom_queue_job" class CustomQueueJobWithFilterProc < CustomQueueJob # slightly contrived example of munging args to the # worker and removing a random bit. sidekiq_options lock: :until_expired, unique_args: (lambda do |args| options = args.extract_options! options.delete("random") args + [options] end) end
Version data entries
5 entries across 5 versions & 1 rubygems