aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-03-08 12:11:51 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-03-08 12:11:51 +0000
commitc59bce8596b980535664d0caa5b650384c7a0e91 (patch)
tree7753dfecd96825f0f3df90d830aaae924106fddf /activerecord/lib/active_record/connection_adapters
parent182b3ed70c81ae9450ee8ba7d8939510a19853fe (diff)
downloadrails-c59bce8596b980535664d0caa5b650384c7a0e91.tar.gz
rails-c59bce8596b980535664d0caa5b650384c7a0e91.tar.bz2
rails-c59bce8596b980535664d0caa5b650384c7a0e91.zip
Fix typo. References #7727, closes #7762.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6355 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/lib/active_record/connection_adapters')
-rw-r--r--activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
index 1c469f44a1..c4bd2c8a04 100644
--- a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
+++ b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
@@ -57,7 +57,7 @@ module ActiveRecord
@config = config
# Ignore async_exec and async_query with the postgres-pr client lib.
- @async = config[:allow_concurrency] && @connection.respond_to(:async_exec)
+ @async = config[:allow_concurrency] && @connection.respond_to?(:async_exec)
configure_connection
end