sidekiq-sequence
sidekiq-sequence copied to clipboard
Use a Sidekiq::Sequence::Worker outside of a sequence?
I have a sequence with 3 workers that 1) summarize, 2) tag, and 3) categorize a record.
Due to natural inconsistencies, I have several records that are summarized but not tagged, and some that are tagged but not categorized.
Can I run a Sidekiq::Sequence::Worker on its own, without using the sequence?
Or do I need to copy-paste the sequence-worker's code into a plain old Sidekiq::Worker? Thanks.