Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add compatibility with strict_loading_by_default #375

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/models/solid_queue/claimed_execution.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

class SolidQueue::ClaimedExecution < SolidQueue::Execution
belongs_to :process
belongs_to :process, strict_loading: false

scope :orphaned, -> { where.missing(:process) }

Expand Down
2 changes: 1 addition & 1 deletion app/models/solid_queue/execution.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class UndiscardableError < StandardError; end

scope :ordered, -> { order(priority: :asc, job_id: :asc) }

belongs_to :job
belongs_to :job, strict_loading: false

class << self
def type
Expand Down
2 changes: 1 addition & 1 deletion app/models/solid_queue/job/concurrency_controls.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module ConcurrencyControls
extend ActiveSupport::Concern

included do
has_one :blocked_execution
has_one :blocked_execution, strict_loading: false

delegate :concurrency_limit, :concurrency_duration, to: :job_class

Expand Down
4 changes: 2 additions & 2 deletions app/models/solid_queue/job/executable.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ module Executable
included do
include ConcurrencyControls, Schedulable, Retryable

has_one :ready_execution
has_one :claimed_execution
has_one :ready_execution, strict_loading: false
has_one :claimed_execution, strict_loading: false

after_create :prepare_for_execution

Expand Down
2 changes: 1 addition & 1 deletion app/models/solid_queue/job/recurrable.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module Recurrable
extend ActiveSupport::Concern

included do
has_one :recurring_execution, dependent: :destroy
has_one :recurring_execution, strict_loading: false, dependent: :destroy
end
end
end
Expand Down
2 changes: 1 addition & 1 deletion app/models/solid_queue/job/retryable.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module Retryable
extend ActiveSupport::Concern

included do
has_one :failed_execution
has_one :failed_execution, strict_loading: false

scope :failed, -> { includes(:failed_execution).where.not(failed_execution: { id: nil }) }
end
Expand Down
2 changes: 1 addition & 1 deletion app/models/solid_queue/job/schedulable.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module Schedulable
extend ActiveSupport::Concern

included do
has_one :scheduled_execution
has_one :scheduled_execution, strict_loading: false

scope :scheduled, -> { where(finished_at: nil) }
end
Expand Down
4 changes: 2 additions & 2 deletions app/models/solid_queue/process.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
class SolidQueue::Process < SolidQueue::Record
include Executor, Prunable

belongs_to :supervisor, class_name: "SolidQueue::Process", optional: true, inverse_of: :supervisees
has_many :supervisees, class_name: "SolidQueue::Process", inverse_of: :supervisor, foreign_key: :supervisor_id
belongs_to :supervisor, class_name: "SolidQueue::Process", optional: true, inverse_of: :supervisees, strict_loading: false
has_many :supervisees, class_name: "SolidQueue::Process", inverse_of: :supervisor, foreign_key: :supervisor_id, strict_loading: false

store :metadata, coder: JSON

Expand Down
2 changes: 2 additions & 0 deletions test/dummy/config/application.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ class Application < Rails::Application

config.active_job.queue_adapter = :solid_queue

config.active_record.strict_loading_by_default = true

if ENV["SEPARATE_CONNECTION"] && ENV["TARGET_DB"] != "sqlite"
config.solid_queue.connects_to = { database: { writing: :primary, reading: :replica } }
end
Expand Down