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
Describe the bug
There is a deprecation warning in Sidekiq output complaining about a line of code in sidekiq-unique-jobs
Redis#exists(key)will return an Integer in redis-rb 4.3.exists?returns a boolean, you should use it instead. To opt-in to the new behavior now you can set Redis.exists_returns_integer = true. To disable this message and keep the current (boolean) behaviour of 'exists' you can setRedis.exists_returns_integer = false`, but this option will be removed in 5.0.
* Don't reap :RUN keys when active
There is no harm in skipping these from being reaped, they will get reaped next time instead.
* Mandatory rubocop commit
* Prefer `conn.exists?` when possible
Close#579
* Ignore recent changes
* Reduce resource consumption on Github Actions
Describe the bug
There is a deprecation warning in Sidekiq output complaining about a line of code in sidekiq-unique-jobs
It references this line:
https://github.com/mhenrixon/sidekiq-unique-jobs/blob/master/lib/sidekiq_unique_jobs/orphans/ruby_reaper.rb#L127
The text was updated successfully, but these errors were encountered: