We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62b5815 commit 63dde91Copy full SHA for 63dde91
app/jobs/application_job.rb
@@ -2,9 +2,4 @@ class ApplicationJob < ActiveJob::Base
2
retry_on ActiveRecord::Deadlocked
3
4
discard_on ActiveJob::DeserializationError, ActiveStorage::IntegrityError
5
-
6
- rescue_from(Exception) do |exception|
7
- Appsignal.send_error(exception)
8
- raise exception
9
- end
10
end
config/environments/production.rb
@@ -70,7 +70,6 @@
70
config.cache_store = :redis_cache_store, {url: ENV["CACHE_REDIS_URL"]}
71
72
config.active_job.queue_adapter = :solid_queue
73
- config.solid_queue.on_thread_error = ->(error) { Appsignal.send_error(error) }
74
75
config.action_mailer.perform_caching = false
76
0 commit comments