Fix ActionMailer's deliver later default queue

The default queue name used by `deliver_later` is no longer `mailers`.

This commit removes the misleading information from the class
documentation

Ref: #40848
This commit is contained in:
Geremia Taglialatela 2021-03-05 10:13:51 +01:00
parent fdba9304c2
commit 3da5267f1a
1 changed files with 1 additions and 1 deletions

View File

@ -433,7 +433,7 @@ module ActionMailer
# * <tt>deliveries</tt> - Keeps an array of all the emails sent out through the Action Mailer with
# <tt>delivery_method :test</tt>. Most useful for unit and functional testing.
#
# * <tt>deliver_later_queue_name</tt> - The name of the queue used with <tt>deliver_later</tt>. Defaults to +mailers+.
# * <tt>deliver_later_queue_name</tt> - The name of the queue used with <tt>deliver_later</tt>.
class Base < AbstractController::Base
include DeliveryMethods
include Rescuable