Flowdock
method

strict_loading_violation!

Importance_0
Ruby on Rails latest stable (v6.1.7.7) - 0 notes - Class: Core
strict_loading_violation!(owner:, reflection:) public

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/core.rb, line 307
      def self.strict_loading_violation!(owner,, reflection)) # :nodoc:
        case action_on_strict_loading_violation
        when :raise
          message = "`#{owner}` is marked for strict_loading. The `#{reflection.klass}` association named `:#{reflection.name}` cannot be lazily loaded."
          raise ActiveRecord::StrictLoadingViolationError.new(message)
        when :log
          name = "strict_loading_violation.active_record"
          ActiveSupport::Notifications.instrument(name, owner: owner, reflection: reflection)
        end
      end
Register or log in to add new notes.