Replies: 2 comments
Answer selected by
mhenrixon
-
Thank you, I saw this but the link doesn't open so I was hoping there are other solutions. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I'm having issues with Sidekiq's test mode. It seems the unique jobs extension still reaches Redis and creates locks there.
I think that's not right and one may think they don't touch Redis in the test environment while in fact, they do. I am currently facing a problem with
MyWorker.jobs.clear
. I'm clearing the jobs but can't enqueue a new job until I doSidekiq.redis(&:flushdb)
.So in my use case, we create a record and it pushes a job. Then I need to delete the job, make a few adjustments to the record, and make sure a new job is pushed once the record is updated.
Beta Was this translation helpful? Give feedback.
All reactions