-
Notifications
You must be signed in to change notification settings - Fork 182
New issue
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
Resque showing job as processed despite raised exception in Exq #242
Comments
Actually even Exq.Api.stats reports all as processed and none as failed. |
@eidge Please note that by default, failed items will be retried. You can change this in config though to 0 retries, which would then be counted as failed after one error. See this session below:
It should be in the "retries" list as above. Is this happening to you also? If not, maybe can you give a script or file to replicate it? |
Hey there @akira, I have set the retries to 0 actually. I'll try to create a reproducible example tomorrow. |
Hey there guys,
I'm using Exq to process some of our resque jobs in elixir. Everything is working and I'm able to enqueue jobs on the Ruby side and process them in the Elixir side with Exq.
The only problem is that I'm forcing my job to raise an exception in some cases and was expecting the failed job to show on Resque, but it just shows a successfully processed job instead.
My job looks like this:
And Exq acknowledges the raised exception:
But resque still shows this as a success.
Am I doind something wrong or is this a bug?
The text was updated successfully, but these errors were encountered: