diff --git a/activesupport/lib/active_support/per_thread_registry.rb b/activesupport/lib/active_support/per_thread_registry.rb index b89ce2cbeb..fb9a4c0e33 100644 --- a/activesupport/lib/active_support/per_thread_registry.rb +++ b/activesupport/lib/active_support/per_thread_registry.rb @@ -35,7 +35,7 @@ module ActiveSupport protected def method_missing(*args, &block) - instance.send(*args, &block) + instance.public_send(*args, &block) end end end