Commit 4b96907e authored by Ariejan de Vroom's avatar Ariejan de Vroom

Merge pull request #603 from yvmarques/patch-1

Changed for mysql2 adapter
parents 3b4e7b31 2519ecf6
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
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment