aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/dependencies.rb
diff options
context:
space:
mode:
authorKasper Timm Hansen <kaspth@gmail.com>2015-09-19 18:00:06 +0200
committerKasper Timm Hansen <kaspth@gmail.com>2015-09-19 18:00:06 +0200
commit1bf3cecf59821368cf3952188677b80a4407d883 (patch)
tree50663e739dce52d51297193c99714047201e8e69 /activesupport/lib/active_support/dependencies.rb
parentdcc941382b44eec0704c120cf1a73067c37ab79b (diff)
parent56ac6e4768adb1f7055474d40a9e921380559c43 (diff)
downloadrails-1bf3cecf59821368cf3952188677b80a4407d883.tar.gz
rails-1bf3cecf59821368cf3952188677b80a4407d883.tar.bz2
rails-1bf3cecf59821368cf3952188677b80a4407d883.zip
Merge pull request #21679 from jdantonio/replace-thread-safe
Replaced `ThreadSafe::Map` with successor `Concurrent::Map`.
Diffstat (limited to 'activesupport/lib/active_support/dependencies.rb')
-rw-r--r--activesupport/lib/active_support/dependencies.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/dependencies.rb b/activesupport/lib/active_support/dependencies.rb
index 8215a3085e..16b726bcba 100644
--- a/activesupport/lib/active_support/dependencies.rb
+++ b/activesupport/lib/active_support/dependencies.rb
@@ -1,6 +1,6 @@
require 'set'
require 'thread'
-require 'thread_safe'
+require 'concurrent'
require 'pathname'
require 'active_support/core_ext/module/aliasing'
require 'active_support/core_ext/module/attribute_accessors'
@@ -585,7 +585,7 @@ module ActiveSupport #:nodoc:
class ClassCache
def initialize
- @store = ThreadSafe::Cache.new
+ @store = Concurrent::Map.new
end
def empty?