aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-01-14 17:34:21 -0200
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-01-14 17:34:21 -0200
commit11cde2bd7b34eef9e487f5ee5f295e56e29b2b02 (patch)
treeb26b933453c28989e72fe597cfb65dc9696a73c4 /activerecord
parent2f632f53919d2b44dbb2cfaadabed2310319f005 (diff)
downloadrails-11cde2bd7b34eef9e487f5ee5f295e56e29b2b02.tar.gz
rails-11cde2bd7b34eef9e487f5ee5f295e56e29b2b02.tar.bz2
rails-11cde2bd7b34eef9e487f5ee5f295e56e29b2b02.zip
Delegate clear_active_connections to handler as well
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/connection_handling.rb8
1 files changed, 2 insertions, 6 deletions
diff --git a/activerecord/lib/active_record/connection_handling.rb b/activerecord/lib/active_record/connection_handling.rb
index e9cd3d5e57..d7746826a9 100644
--- a/activerecord/lib/active_record/connection_handling.rb
+++ b/activerecord/lib/active_record/connection_handling.rb
@@ -90,11 +90,7 @@ module ActiveRecord
connection_handler.remove_connection(klass)
end
- def clear_active_connections!
- connection_handler.clear_active_connections!
- end
-
- delegate :clear_reloadable_connections!,
- :clear_all_connections!,:verify_active_connections!, :to => :connection_handler
+ delegate :clear_active_connections!, :clear_reloadable_connections!,
+ :clear_all_connections!, :verify_active_connections!, :to => :connection_handler
end
end