mirror of
https://github.com/deanpcmad/sidekiq-limit_fetch.git
synced 2022-11-09 13:54:36 -05:00
8 lines
113 B
Ruby
8 lines
113 B
Ruby
class FastWorker
|
|
include Sidekiq::Worker
|
|
sidekiq_options queue: :fast
|
|
|
|
def perform
|
|
sleep 0.2
|
|
end
|
|
end
|