diff options
author | Francesco Rodriguez <lrodriguezsanc@gmail.com> | 2013-07-01 21:12:51 -0500 |
---|---|---|
committer | Francesco Rodriguez <lrodriguezsanc@gmail.com> | 2013-07-01 21:12:51 -0500 |
commit | e7e49a07349b808743a868693ab6b092a745abcf (patch) | |
tree | fb40b1f148b3c1387839a866df06609428ecf35d /activerecord/lib | |
parent | f62fb985b6a7b90872148f0786219c9cc94c9356 (diff) | |
download | rails-e7e49a07349b808743a868693ab6b092a745abcf.tar.gz rails-e7e49a07349b808743a868693ab6b092a745abcf.tar.bz2 rails-e7e49a07349b808743a868693ab6b092a745abcf.zip |
Remove deprecated AR::Connection#clear_stale_cached_connections! 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. # |