Merge pull request #603 from yvmarques/patch-1

Changed for mysql2 adapter
This commit is contained in:
Ariejan de Vroom 2012-03-27 06:46:27 -07:00
commit 4b96907e7c

View file

@ -1,10 +1,10 @@
module ActiveRecord::ConnectionAdapters
class MysqlAdapter
class Mysql2Adapter
alias_method :execute_without_retry, :execute
def execute(*args)
execute_without_retry(*args)
rescue ActiveRecord::StatementInvalid => e
rescue Mysql2::Error => e
if e.message =~ /server has gone away/i
warn "Server timed out, retrying"
reconnect!
@ -14,4 +14,4 @@ module ActiveRecord::ConnectionAdapters
end
end
end
end
end