Questions tagged [sidekiq-pro]

3 questions
3
votes
2 answers

Bundler:HTTPError Could not download gem sidekiq-pro-5.3.0

Bundler:HTTPError Could not download gem sidekiq-pro-5.3.0. I am unable to install the sidekiq pro gem for rails due to a permissions error. $ bundle install Bundler::HTTPError: Could not download gem from https://gems.contribsys.com/ due to…
i0x539
  • 4,763
  • 2
  • 20
  • 28
1
vote
1 answer

Sidekiq Batch - Scheduling jobs with perform_in and waiting for completion with callbacks

I am considering using Sidekiq::Batch and learning from the following reference: https://github.com/sidekiq/sidekiq/wiki/Batches I would like to know if the following is possible and what would happen in that case: In the example below, I schedule a…
1
vote
0 answers

Sidekiq Batches, Ruby On Rails - How to write test with rspec for testing Job, where inside the batch is reopens from another Job

Class ParentWorker def perform(team_id) batch = Sidekiq::Batch.new batch.on(:complete, self.class, {:team_id => team_id}) batch.jobs do Team.find(team_id).assets.each do |asset| …