We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b417c30 + ecd7d7b commit 79e7de1Copy full SHA for 79e7de1
1 file changed
app/jobs/concerns/email_all_petition_signatories.rb
@@ -59,8 +59,10 @@ def perform(**args)
59
# Batches the signataries to send emails to in groups of 1000
60
# and enqueues a job to do the actual sending
61
def enqueue_send_email_jobs
62
- signatures_to_email.find_each do |signature|
63
- email_delivery_job_class.perform_later(**mailer_arguments(signature))
+ Appsignal.without_instrumentation do
+ signatures_to_email.find_each do |signature|
64
+ email_delivery_job_class.perform_later(**mailer_arguments(signature))
65
+ end
66
end
67
68
0 commit comments