Asfand Qazi
Asfand Qazi

Reputation: 6905

Which ActiveJob queue does ActionMailer use in Rails 4.2?

In Rails 4.2, ActionMailer supports using the new background job abstraction layer called ActiveJob. ActiveJob puts jobs into background queues to be processed later outside of the flow of code that pushed the job into it.

The question is, since ActionMailer now supports automatic enqueuing of emails with the #deliver_later method, which queue do those emails get sent into.

Upvotes: 4

Views: 1093

Answers (1)

Asfand Qazi
Asfand Qazi

Reputation: 6905

The answer is: according to the Sidekiq wiki, the "mailers" queue.

Upvotes: 4

Related Questions