Changed for mysql2 adapter
This commit is contained in:
parent
3b4e7b315b
commit
2519ecf686
|
@ -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
|
Loading…
Reference in a new issue