mirror of
https://github.com/github/rails.git
synced 2026-02-03 18:55:29 -05:00
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6355 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
@@ -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]
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user