Created
February 20, 2012 02:25
-
-
Save datacow-com/1867326 to your computer and use it in GitHub Desktop.
Rails mysql reconnect code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ActiveRecord::ConnectionAdapters::MysqlAdapter.module_eval do | |
def execute_with_retry_once(sql, name = nil) | |
retried = false | |
begin | |
execute_without_retry_once(sql, name) | |
rescue ActiveRecord::StatementInvalid => exception | |
ActiveRecord::Base.logger.info "#{exception}, retried? #{retried}" | |
# Our database connection has gone away, reconnect and retry this method | |
reconnect! | |
unless retried | |
retried = true | |
retry | |
end | |
end | |
end | |
alias_method_chain :execute, :retry_once | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment