Fix typo. References #7727, closes #7762.

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6355 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jeremy Kemper
2007-03-08 12:11:51 +00:00
parent 182b3ed70c
commit c59bce8596
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@
* Oracle: overflow Time to DateTime. #7718 [Michael Schoen]
* PostgreSQL: don't use async_exec and async_query with postgres-pr. #7727 [flowdelic]
* PostgreSQL: don't use async_exec and async_query with postgres-pr. #7727, #7762 [flowdelic, toolmantim]
* Fix has_many :through << with custom foreign keys. #6466, #7153 [naffis, Rich Collins]

View File

@@ -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