aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-02-21 01:44:15 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-02-21 01:44:15 +0000
commitf3845822401025cffba6bb470ad64e48b9b3a4f6 (patch)
treec427ba7e1cece030c82db32b7f4560cf006be7f2 /activerecord/CHANGELOG
parent1677404893bb7e58c8e7529299840c938a868cbb (diff)
downloadrails-f3845822401025cffba6bb470ad64e48b9b3a4f6.tar.gz
rails-f3845822401025cffba6bb470ad64e48b9b3a4f6.tar.bz2
rails-f3845822401025cffba6bb470ad64e48b9b3a4f6.zip
Fixed that Active Record would throw Broken Pipe errors with FCGI when the MySQL connection timed out instead of reconnecting #428 [Nicholas Seckar]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@729 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/CHANGELOG')
-rw-r--r--activerecord/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index b4e60b14ce..adefc4a694 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Fixed that Active Record would throw Broken Pipe errors with FCGI when the MySQL connection timed out instead of reconnecting #428 [Nicholas Seckar]
+
* Added options to specify an SSL connection for MySQL. Define the following attributes in the connection config (config/database.yml in Rails) to use it: sslkey, sslcert, sslca, sslcapath, sslcipher. To use SSL with no client certs, just set :sslca = '/dev/null'. http://dev.mysql.com/doc/mysql/en/secure-connections.html #604 [daniel@nightrunner.com]
* Added automatic dropping/creating of test tables for running the unit tests on all databases #587 [adelle@bullet.net.au]