Flowdock
method

act_on_ignored_order

Importance_0
v5.2.3 - Show latest stable - 0 notes - Class: ActiveRecord::Batches
act_on_ignored_order(error_on_ignore) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/relation/batches.rb, line 277
      def act_on_ignored_order(error_on_ignore)
        raise_error = (error_on_ignore.nil? ? klass.error_on_ignored_order : error_on_ignore)

        if raise_error
          raise ArgumentError.new(ORDER_IGNORE_MESSAGE)
        elsif logger
          logger.warn(ORDER_IGNORE_MESSAGE)
        end
      end
Register or log in to add new notes.