Skip to content

Commit

Permalink
Merge branch 'release/1.2.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
taehwakang committed Feb 17, 2022
2 parents 6a0aeff + c38c7db commit 7654947
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ vendor/
Guardfile
pkg
.DS_Store
.idea/
4 changes: 2 additions & 2 deletions lib/sidekiq/cron/job.rb
Original file line number Diff line number Diff line change
Expand Up @@ -206,9 +206,9 @@ def self.all
job_hashes = nil
Sidekiq.redis do |conn|
set_members = conn.smembers(jobs_key)
job_hashes = conn.pipelined do
job_hashes = conn.pipelined do |pipeline|
set_members.each do |key|
conn.hgetall(key)
pipeline.hgetall(key)
end
end
end
Expand Down

0 comments on commit 7654947

Please sign in to comment.