diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-07-01 19:33:12 -0700 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-07-01 19:33:12 -0700 |
commit | aa3ff85f4700d3b1bec92eb963bff8c6e88529e5 (patch) | |
tree | 47638d4fcf921d60ae99e5d6a8bdb41ace895113 /activerecord/lib | |
parent | 150266706372850eb90706e8ec892e6138448de9 (diff) | |
parent | e7e49a07349b808743a868693ab6b092a745abcf (diff) | |
download | rails-aa3ff85f4700d3b1bec92eb963bff8c6e88529e5.tar.gz rails-aa3ff85f4700d3b1bec92eb963bff8c6e88529e5.tar.bz2 rails-aa3ff85f4700d3b1bec92eb963bff8c6e88529e5.zip |
Merge pull request #11230 from frodsan/remove_deprecated_clear_stale_cached_connections_method
Remove AR::Connection#clear_stale_cached_connections! deprecated method
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb b/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb index 816b397fcf..811749c7fd 100644 --- a/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb +++ b/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb @@ -332,11 +332,6 @@ module ActiveRecord end end - def clear_stale_cached_connections! # :nodoc: - reap - end - deprecate :clear_stale_cached_connections! => "Please use #reap instead" - # Check-out a database connection from the pool, indicating that you want # to use it. You should call #checkin when you no longer need this. # |