From 004326ecea6ad267b03cf7737b489e6622301985 Mon Sep 17 00:00:00 2001 From: Xavier Noria Date: Fri, 24 Feb 2012 20:59:14 +0100 Subject: removes the reconnect key from the database.yml generated for MySQL The reconnect flag does not play nicely with transactions and so it is of little use in Rails applications. Thus, albeit supported by mysql2, it does not deserve such a prominent place in the generated database.yml, which should be a representative config example. Note that the flag is false by default. Advanced users know from mysql2 docs that the flag is available. --- .../rails/app/templates/config/databases/mysql.yml | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'railties/lib') diff --git a/railties/lib/rails/generators/rails/app/templates/config/databases/mysql.yml b/railties/lib/rails/generators/rails/app/templates/config/databases/mysql.yml index dec4f3d395..c3349912aa 100644 --- a/railties/lib/rails/generators/rails/app/templates/config/databases/mysql.yml +++ b/railties/lib/rails/generators/rails/app/templates/config/databases/mysql.yml @@ -11,10 +11,6 @@ development: adapter: mysql2 encoding: utf8 - # It is recommended to leave reconnect disabled because automatic - # reconnections do not play nicely with transactions, which are - # used by Active Record all over the place. - reconnect: false database: <%= app_name %>_development pool: 5 username: root @@ -31,10 +27,6 @@ development: test: adapter: mysql2 encoding: utf8 - # It is recommended to leave reconnect disabled because automatic - # reconnections do not play nicely with transactions, which are - # used by Active Record all over the place. - reconnect: false database: <%= app_name %>_test pool: 5 username: root @@ -48,10 +40,6 @@ test: production: adapter: mysql2 encoding: utf8 - # It is recommended to leave reconnect disabled because automatic - # reconnections do not play nicely with transactions, which are - # used by Active Record all over the place. - reconnect: false database: <%= app_name %>_production pool: 5 username: root -- cgit v1.2.3