Sha256: 0d36457787ead62589222ad3e01c4d8b9c4e038c1d508cfebe0f04e41ddd6439
Contents?: true
Size: 396 Bytes
Versions: 13
Compression:
Stored size: 396 Bytes
Contents
class CustomQueueJobWithFilterProc < CustomQueueJob # slightly contrived example of munging args to the # worker and removing a random bit. sidekiq_options unique: :until_timeout, unique_args: (lambda do |args| options = args.extract_options! options.delete('random') args + [options] end) end
Version data entries
13 entries across 13 versions & 1 rubygems