vote up 1 vote down star

I have a block like so:

begin
      # some SQL request
rescue Mysql::Error => e
      logputs "Mysql::Error occurred, retrying in 10s: #{e.message}"
      sleep 10
      retry
end

But when a "Lost connection to MySQL server" error occurred, this block was not able to catch it and retry (the MySQL server was restarted). Any idea how I can properly catch this exception?

Thanks!

flag

2 Answers

vote up 0 vote down

Are you sure you are rescuing the correct type of exception?

Try using the following code:

rescue StandardError => e
  puts e

That should output any exception that is raised and more importantly you will be able to see the specific type. Then you can adjust your rescue statement to be more specific.

link|flag
Thanks. It looks I'm rescuing the correct type, since this is the error: /mnt/app/releases/20090620000135/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb:212:in `log': Mysql::Error: Lost connection to MySQL server during query: ... (ActiveRecord::StatementInvalid) – ambivalence Jun 20 at 23:42
FYI -- Confusingly, the base class of most raised errors is not Exception but StandardError. – BaroqueBobcat Jun 21 at 2:44
You're right BaroqueBobcat. I've adjusted the code. – Phil Jun 22 at 15:09
vote up 1 vote down

From your comment it looks like what's happening is that a Mysql::Error exception is being thrown, but then caught by ActiveRecord which then throws an ActiveRecord::StatementInvalid exception (which isn't very helpful behaviour in this case!).

I'd say change your rescue to catch the AR::StatementInvalid exception and see what that does for you.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.