Commit 630b8afabf809e6d7b7f271d7b25fe08fac76854

Authored by Braulio Bhavamitra
Committed by Daniela Feitosa
1 parent 4e61bfb7

Fixes for solr

(ActionItem1958)
lib/tasks/multitenancy.rake
... ... @@ -25,7 +25,7 @@ namespace :multitenancy do
25 25 m.rebuild_index
26 26 puts "Rebuilt index for #{m}" if Rake.application.options.trace
27 27 end
28   - m.paginated_each(:per_page => 50) { |i| i.ferret_update }
  28 + m.paginated_each(:per_page => 50) { |i| i.solr_save }
29 29 puts "Reindexed all instances of #{m}" if Rake.application.options.trace
30 30 end
31 31 end
... ...
vendor/plugins/acts_as_solr_reloaded/lib/acts_as_solr/class_methods.rb
... ... @@ -238,5 +238,7 @@ module ActsAsSolr #:nodoc:
238 238 solr_optimize
239 239 logger.info items_processed > 0 ? "Index for #{self.name} has been rebuilt" : "Nothing to index for #{self.name}"
240 240 end
  241 +
  242 + alias :rebuild_index :rebuild_solr_index
241 243 end
242 244 end
... ...