README.md in sidekiq-unique-jobs-5.0.4 vs README.md in sidekiq-unique-jobs-5.0.5
- old
+ new
@@ -133,10 +133,10 @@
The method or the proc can return a modified version of args without the transient arguments included, as shown below:
```ruby
class UniqueJobWithFilterMethod
include Sidekiq::Worker
- sidekiq_options unique: :until_and_while_execution,
+ sidekiq_options unique: :until_and_while_executing,
unique_args: :unique_args
def self.unique_args(name, id, options)
[ name, options[:type] ]
end