From b5384d91a4e761023602d7eeb2ad92be0fe44815 Mon Sep 17 00:00:00 2001 From: Matthew Draper Date: Thu, 19 Nov 2015 11:01:31 +1030 Subject: [PATCH] Add missing require Fixes #22311 --- activesupport/lib/active_support/per_thread_registry.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/activesupport/lib/active_support/per_thread_registry.rb b/activesupport/lib/active_support/per_thread_registry.rb index 506dd950cb..a909a65bb6 100644 --- a/activesupport/lib/active_support/per_thread_registry.rb +++ b/activesupport/lib/active_support/per_thread_registry.rb @@ -1,3 +1,5 @@ +require 'active_support/core_ext/module/delegation' + module ActiveSupport # This module is used to encapsulate access to thread local variables. #