Fix replica being used even if not explicitly defined (#26074)

lolsob-rspec
Claire 2023-07-21 11:30:53 +02:00 committed by GitHub
parent f31a9bd78e
commit d6fae56d3f
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ class ApplicationRecord < ActiveRecord::Base
include Remotable
connects_to database: { writing: :primary, reading: :read }
connects_to database: { writing: :primary, reading: ENV['DB_REPLICA_NAME'] || ENV['READ_DATABASE_URL'] ? :read : :primary }
class << self
def update_index(_type_name, *_args, &_block)