소스 검색

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
 
     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