gaffneyc / sunspot-queue

Background search indexing using existing worker systems
MIT License
35 stars 37 forks source link

Resque / Sidekiq queue should be configurable #3

Open gaffneyc opened 12 years ago

gaffneyc commented 12 years ago

Temporary work around:

Sunspot::Queue::Resque::IndexJob.class_eval do
  def self.queue
    "low"
  end
end

Sunspot::Queue::Resque::RemovalJob.class_eval do
  def self.queue
    "low"
  end
end