Module: ActiveRecordShards::DefaultReplicaPatches::AssociationsPreloaderAssociationLoadRecordsPatch

Defined in:
lib/active_record_shards/default_replica_patches.rb

Instance Method Summary collapse

Instance Method Details

#load_recordsObject



242
243
244
245
246
247
248
# File 'lib/active_record_shards/default_replica_patches.rb', line 242

def load_records
  if klass
    on_replica_unless_tx { super }
  else
    super
  end
end

#on_replica_unless_txObject



250
251
252
# File 'lib/active_record_shards/default_replica_patches.rb', line 250

def on_replica_unless_tx
  klass.on_replica_unless_tx { yield }
end