mirror of
https://github.com/endofunky/sidetiq.git
synced 2022-11-09 13:53:30 -05:00
13 lines
194 B
Ruby
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
|
|
|