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