I have a local carrier strip binding locally with sidekiq and sidekiq sites. I see that jobs are being added to sidekiq Enqueued, but they never start. What would prevent them from doing it?
Setting: Rails 3.2.11 Unicorn 4.6.1 Sidekiq 2.7.5 carrier wave 0.8.0 carrierwave_backgrounder 0.2.0
Configuration for backgrounder.
CarrierWave::Backgrounder.configure do |c| c.backend :sidekiq, queue: :carrierwave end
Model
class EntryImage < ActiveRecord::Base attr_accessible :alt, :image_path belongs_to :imageable, :polymorphic => true validates :image_path, presence: true mount_uploader :image_path, ImageUploader process_in_background :image_path end
Loader
# encoding: utf-8 class ImageUploader < CarrierWave::Uploader::Base include ::CarrierWave::Backgrounder::Delay

Checking registered members is returned empty
1.9.3p194 :006 > Sidekiq::Client.registered_workers => []
configurations / sidekiq.yml
:concurrency: 1
configurations / initializer / sidekiq.rb
require 'sidekiq' Sidekiq.configure_client do |config| config.redis = { :size => 1 } end Sidekiq.configure_server do |config|
I started sidekiq from the command line in several ways and
bundle exec sidekiq -q high,5 default bundle exec sidekiq
Thanks for the help:)
source share