From 0ce620dfe156f5adf94abd68aa33c5c5a9fa64d7 Mon Sep 17 00:00:00 2001 From: jonathan schatz Date: Wed, 18 Dec 2024 08:37:27 -0800 Subject: [PATCH] require configuration --- sentry-rails/lib/sentry/rails/active_job.rb | 1 + sentry-rails/lib/sentry/rails/active_job/configuration.rb | 2 ++ 2 files changed, 3 insertions(+) diff --git a/sentry-rails/lib/sentry/rails/active_job.rb b/sentry-rails/lib/sentry/rails/active_job.rb index 61c44f723..ddb899ed4 100644 --- a/sentry-rails/lib/sentry/rails/active_job.rb +++ b/sentry-rails/lib/sentry/rails/active_job.rb @@ -1,5 +1,6 @@ # frozen_string_literal: true +require "sentry/rails/active_job/configuration" module Sentry module Rails module ActiveJobExtensions diff --git a/sentry-rails/lib/sentry/rails/active_job/configuration.rb b/sentry-rails/lib/sentry/rails/active_job/configuration.rb index 05362485a..a1540cfac 100644 --- a/sentry-rails/lib/sentry/rails/active_job/configuration.rb +++ b/sentry-rails/lib/sentry/rails/active_job/configuration.rb @@ -1,3 +1,5 @@ +# frozen_string_literal: true + module Sentry class Configuration attr_reader :active_job