Skip to content

Commit

Permalink
Merge pull request #10860 from mfo/US/fix-queue-typo
Browse files Browse the repository at this point in the history
fix(typo): mailerS
  • Loading branch information
colinux authored Sep 24, 2024
2 parents cae524b + ee19268 commit e48b845
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/jobs/batch_operation_enqueue_all_job.rb
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion app/jobs/batch_operation_process_one_job.rb
Original file line number Diff line number Diff line change
@@ -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)
Expand Down

0 comments on commit e48b845

Please sign in to comment.