We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi there
I'm using backburner:threads_on_fork:work in production and I'd like some code on my workers to be run when the worker times out or is killed.
backburner:threads_on_fork:work
I enclosed my worker code in a begin/rescue
begin # do time consuming thing rescue => e Rails.logger.error("There was an error = #{e} ") myModel.update_attributes(state: "error") raise e end
but it seems the code in rescue is never called.
Any hint ?
Thanks in advance
geoffroy
The text was updated successfully, but these errors were encountered:
@geoffroymontel Once 1.1 goes out (today?) you'll be able to add hooks for on_retry and on_bury. Will those be sufficient?
on_retry
on_bury
Sorry, something went wrong.
@contentfree I don't think these hooks will be triggered when the worker is killed but I will try the new version and keep you updated. Thanks !
No branches or pull requests
Hi there
I'm using
backburner:threads_on_fork:work
in production and I'd like some code on my workers to be run when the worker times out or is killed.I enclosed my worker code in a begin/rescue
but it seems the code in rescue is never called.
Any hint ?
Thanks in advance
geoffroy
The text was updated successfully, but these errors were encountered: