fix(typo): mailerS
This commit is contained in:
parent
cae524b6bd
commit
ee19268720
2 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
class BatchOperationEnqueueAllJob < ApplicationJob
|
||||
queue_as :mailer # hotfix
|
||||
queue_as :mailers # hotfix
|
||||
|
||||
def perform(batch_operation)
|
||||
batch_operation.enqueue_all
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
class BatchOperationProcessOneJob < ApplicationJob
|
||||
queue_as :mailer # hotfix
|
||||
queue_as :mailers # hotfix
|
||||
retry_on StandardError, attempts: 1 # default 5, for now no retryable behavior
|
||||
|
||||
def perform(batch_operation, dossier)
|
||||
|
|
Loading…
Reference in a new issue