class ActiveRecord::Associations::HasManyThroughAssociation

def find_target(async: false)

def find_target(async: false)
  raise NotImplementedError, "No async loading for HasManyThroughAssociation yet" if async
  return [] unless target_reflection_has_associated_record?
  return scope.to_a if disable_joins
  super
end