spec/jobs/my_unique_job.rb in sidekiq-unique-jobs-5.0.1 vs spec/jobs/my_unique_job.rb in sidekiq-unique-jobs-5.0.2
- old
+ new
@@ -3,9 +3,9 @@
sidekiq_options(
queue: :customqueue,
retry: true,
unique: :until_executed,
unique_expiration: 7_200,
- retry_count: 10
+ retry_count: 10,
)
def perform(_one, _two); end
end