mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
2c4be4cada
Performs can now be scheduled at arbitrary points in the future.
23 lines
585 B
Ruby
23 lines
585 B
Ruby
module Sidekiq
|
|
module Middleware
|
|
module Server
|
|
class FailureJobs
|
|
def call(*args)
|
|
yield
|
|
rescue => e
|
|
data = {
|
|
:failed_at => Time.now.strftime("%Y/%m/%d %H:%M:%S %Z"),
|
|
:payload => args[1],
|
|
:exception => e.class.to_s,
|
|
:error => e.to_s,
|
|
:backtrace => e.backtrace,
|
|
:worker => args[1]['class'],
|
|
:queue => args[2]
|
|
}
|
|
Sidekiq.redis {|conn| conn.rpush(:failed, Sidekiq.dump_json(data)) }
|
|
raise
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|