浏览代码

Fixed failing checks for async ActiveJob adapter (Rails 5 default)

Andrew Kane 8 年之前
父节点
当前提交
8385f10fe8
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      lib/blazer.rb

+ 3 - 1
lib/blazer.rb

@@ -143,7 +143,9 @@ module Blazer
     end
     end
 
 
     emails.each do |email, checks|
     emails.each do |email, checks|
-      Blazer::CheckMailer.failing_checks(email, checks).deliver_later
+      Safely.safely do
+        Blazer::CheckMailer.failing_checks(email, checks).deliver_now
+      end
     end
     end
   end
   end
 end
 end