Skip to content

Commit

Permalink
Merge branch 'master' into fix-reaper
Browse files Browse the repository at this point in the history
# Conflicts:
#	lib/sidekiq_unique_jobs/batch_delete.rb
#	lib/sidekiq_unique_jobs/lua/reap_orphans.lua
#	spec/sidekiq_unique_jobs/lua/reap_orphans_spec.rb
#	spec/sidekiq_unique_jobs/orphans/reaper_spec.rb
  • Loading branch information
mhenrixon committed Jun 2, 2019
2 parents c0af226 + fbd71c8 commit 5306ebc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/sidekiq_unique_jobs/lua/reap_orphans.lua
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,10 @@ while(index <= reaper_count) do
local run_locked = digest .. ":RUN:LOCKED"
local run_info = digest .. ":RUN:INFO"

redis.call(del_cmd, digest, queued, primed, locked, info, run_digest, run_queued, run_primed, run_locked, run_info)

log_debug(del_cmd, digest, queued, primed, locked, info, run_digest, run_queued, run_primed, run_locked, run_info)
redis.call(del_cmd, digest, queued, primed, locked, info, run_digest, run_queued, run_primed, run_locked, run_info)
log_debug("ZREM", digests_set, digest)
redis.call("ZREM", digests_set, digest)
del_count = del_count + 1
end
Expand Down

0 comments on commit 5306ebc

Please sign in to comment.