1
0
Fork 0
mirror of https://github.com/endofunky/sidetiq.git synced 2022-11-09 13:53:30 -05:00
endofunky--sidetiq/examples/workers/failing.rb
2013-09-16 14:48:51 +01:00

13 lines
194 B
Ruby

class Failing
include Sidekiq::Worker
include Sidetiq::Schedulable
recurrence { secondly }
def perform(*args)
if rand(5) == 0
raise "This didn't go well."
end
end
end