aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb
diff options
context:
space:
mode:
authorFrancesco Rodriguez <lrodriguezsanc@gmail.com>2013-07-01 21:12:51 -0500
committerFrancesco Rodriguez <lrodriguezsanc@gmail.com>2013-07-01 21:12:51 -0500
commite7e49a07349b808743a868693ab6b092a745abcf (patch)
treefb40b1f148b3c1387839a866df06609428ecf35d /activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb
parentf62fb985b6a7b90872148f0786219c9cc94c9356 (diff)
downloadrails-e7e49a07349b808743a868693ab6b092a745abcf.tar.gz
rails-e7e49a07349b808743a868693ab6b092a745abcf.tar.bz2
rails-e7e49a07349b808743a868693ab6b092a745abcf.zip
Remove deprecated AR::Connection#clear_stale_cached_connections! method
Diffstat (limited to 'activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb')
-rw-r--r--activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb5
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.
#