Skip to content
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

Nested Sidekiq jobs are not kicked off with until_and_while_executing #600

Closed
AmenZhou opened this issue May 3, 2021 · 1 comment
Closed

Comments

@AmenZhou
Copy link

AmenZhou commented May 3, 2021

Describe the bug
Nested Sidekiq Jobs are not kicked off with until_and_while_executing
But it works fine with until_executing

Expected behavior
All nested Sidekiq jobs should be executed unless they are duplicated

Current behavior
All nested Sidekiq jobs are not running

Worker class

class MyWorker
  include Sidekiq::Worker
  sidekiq_options lock: :until_and_while_executed
  
  def perform(args)
    # This job won't execute
    MyWorker.perform_async(different_args)
  end
end

Additional context
Gem Version - 5.0.10 (Quite Old, sorry)

I will dig into it when I get time.

@AmenZhou
Copy link
Author

AmenZhou commented May 3, 2021

The issue is fixed by v-6.x. Thanks

@AmenZhou AmenZhou closed this as completed May 3, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant