aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2006-03-02 22:04:38 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2006-03-02 22:04:38 +0000
commit68ff2ebbea15936b618cd0476f4acd24728a6348 (patch)
tree3f96d48ea7e15142419a1ea535a8be526925c463
parent215852745beae6cb4d61d2affff07cc1b2ef0186 (diff)
downloadrails-68ff2ebbea15936b618cd0476f4acd24728a6348.tar.gz
rails-68ff2ebbea15936b618cd0476f4acd24728a6348.tar.bz2
rails-68ff2ebbea15936b618cd0476f4acd24728a6348.zip
fix unreplaced class var
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3747 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r--activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb b/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb
index 7cb230fd3a..fe581a14b5 100644
--- a/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb
+++ b/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb
@@ -72,7 +72,7 @@ module ActiveRecord
end
active_connections.each_value do |connection|
- connection.verify!(@@connection_cache_timeout)
+ connection.verify!(@@verification_timeout)
end
end