From 18cc66cef65acef7ef756836136f5b5253993f02 Mon Sep 17 00:00:00 2001 From: "yuuji.yaginuma" Date: Tue, 31 Jan 2017 10:23:21 +0900 Subject: [PATCH] add default value to `deliver_later_queue_name` option [ci skip] --- actionmailer/lib/action_mailer/base.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actionmailer/lib/action_mailer/base.rb b/actionmailer/lib/action_mailer/base.rb index c0c030ac3e..f02108a859 100644 --- a/actionmailer/lib/action_mailer/base.rb +++ b/actionmailer/lib/action_mailer/base.rb @@ -428,7 +428,7 @@ module ActionMailer # * deliveries - Keeps an array of all the emails sent out through the Action Mailer with # delivery_method :test. Most useful for unit and functional testing. # - # * deliver_later_queue_name - The name of the queue used with deliver_later. + # * deliver_later_queue_name - The name of the queue used with deliver_later. Defaults to +mailers+. class Base < AbstractController::Base include DeliveryMethods include Rescuable