4

Existe-t-il une gemme like_notification-like pour delayed_job? De préférence cela fonctionne avec REE-1.8.7 et Rails 2.3.10.exception_notification pour delayed_job

+0

commuté à Resque =) – razenha

+0

Lors de l'utilisation de Resque, [this gem] (https://github.com/akshayrawat/resque_exception_notification) signale les exceptions via exception_notification. –

Répondre

3

Je l'ai fait quelque chose comme ça dans le passé pour les tâches de rake d'emploi différé:

require 'action_mailer' 
class ExceptionMailer < ActionMailer::Base 
    def setup_mail 
    @from = ExceptionNotifier.sender_address 
    @sent_on = Time.now 
    @content_type = "text/plain" 
    end 

    def exception_message(subject, message) 
    setup_mail 
    @subject = subject 
    @recipients = ExceptionNotifier.exception_recipients 
    @body = message 
    end 
end 

namespace :jobs do 
desc "sync the local database with the remote CMS" 
task(:sync_cms => :environment) do 
    Resort.sync_all! 
    result = Delayed::Job.work_off 
    unless result[1].zero? 
    ExceptionMailer.deliver_exception_message("[SYNC CMS] Error syncing CMS id: #{Delayed::Job.last.id}", Delayed::Job.last.last_error) 
    end 
end 

fin

2

Inclure ce module dans les classes qui doivent être retardées:


require 'exception_notifier' 
module Delayed 
    module ExceptionNotifier 
    # Send error via exception notifier 
    def error(job, e) 
     env = {} 
     env['exception_notifier.options'] = { 
     :sections => %w(backtrace delayed_job), 
     :email_prefix => '[Delayed Job ERROR] ', 
     :exception_recipients => %w([email protected]), 
     :sender_address => %([email protected]) 
     } 
     env['exception_notifier.exception_data'] = {:job => job} 
     ::ExceptionNotifier::Notifier.exception_notification(env, e).deliver 
    end 
    end 
end 

et créez un modèle pour la notification dans app/views/exception_notifier/_delayed_job.text.erb:


Job name: <%= @job.name %> 
Job: <%= raw @job.inspect %> 

* Process: <%= raw $$ %> 
* Server : <%= raw `hostname -s`.chomp %> 
Questions connexes