-
-
Notifications
You must be signed in to change notification settings - Fork 277
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
:until_executing does not schedule job in Sidekiq 6.0.1 at all #427
Comments
Yup, you can see that exact behavior in tests. Really not sure what they did but I also have completely broken test suite against sidekiq develop so they might be going through some rough times over on sidekiq |
@ArturT see sidekiq/sidekiq#4308 for an eventual fix. |
So whats the fix for |
Try v6.0.14 |
@mhenrixon Thanks for the fix and new release. I've updated sidekiq-unique-jobs to 6.0.14 but now I see below error when call
I've checked the directory with installed sidekiq-unique-jobs and it looks like there is missing
I tried |
Yup, will create a new release immediately! Sorry about that, I don't know an easy way to integration test this part. |
Gem yanked and v 6.0.15 released. I built and installed it locally and the directory is there |
@mhenrixon Thank you. It works well now. I've deployed the new version of your gem and new sidekiq to my production API https://knapsackpro.com :) |
Describe the bug
:until_executing
works with sidekiq 6.0.0 but not in sidekiq 6.0.1. In sidekiq 6.0.1 the job is never added to queue.Expected behavior
Below is a log from rails console in development.
My sidekiq background process (
bin/sidekiq
) is not started as I'm running below commands in rails console.:until_executing
flag works correctly for sidekiq 6.0.0 and it won't add another job to queue if the first job was not started yet.Current behavior
In Sidekiq 6.0.1 the behavior is different. The job is never added to the queue even if there are no jobs in the queue.
Worker class
The text was updated successfully, but these errors were encountered: