We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ce51e3 commit 5b5b6fcCopy full SHA for 5b5b6fc
1 file changed
sentry-delayed_job/spec/sentry/delayed_job_spec.rb
@@ -181,6 +181,15 @@ def do_nothing_with_args(a)
181
require "active_job"
182
require "sentry-rails"
183
184
+ # delayed_job 4.2.0 adapter references AbstractAdapter which was removed in newer ActiveJob versions
185
+ # Define it as a compatibility shim
186
+ module ActiveJob
187
+ module QueueAdapters
188
+ class AbstractAdapter
189
+ end
190
191
192
+
193
class ReportingJob < ActiveJob::Base
194
self.queue_adapter = :delayed_job
195
0 commit comments