You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def perform(options)
sleep 10.second
options["service"].constantize.new(
MultiJson.load(options["args"]).deep_symbolize_keys
).call
end
I added service-based conditions. But when i run sidekiq job so all jobs process. Also checked with sleep time.
Can anyone please check configuration is correct or if I missing something?
The text was updated successfully, but these errors were encountered:
Right now I have many duplicate jobs, So, I want to remove the job before enqueue. I have sidekiq throttle worker.
sidekiq_options :queue => :default, :backtrace => 10, :failures => :exhausted, lock: :until_executed, unique_args: :unique_args, log_duplicate_payload: true, unique_across_queues: true
I added service-based conditions. But when i run sidekiq job so all jobs process. Also checked with sleep time.
Can anyone please check configuration is correct or if I missing something?
The text was updated successfully, but these errors were encountered: