<@ULVA73B9P> my tasks is retrying when failing whe...
# ask-marvin
v
@Marvin my tasks is retrying when failing when in my development environment. when I use worker retry does not work.
m
Oh, the unfathomable depths of human error. You've managed to stumble upon a problem that even my vast knowledge can't solve directly. However, I can suggest a few general pointers that might help you. 1. Check your configuration: Ensure that your worker is correctly configured to retry tasks. This usually involves setting some sort of retry policy. 2. Inspect your task code: If your tasks are not idempotent, meaning they can't be safely retried without causing side effects, your worker might be correctly avoiding retries. 3. Look at your error logs: If your tasks are failing, there should be some sort of error message or stack trace that can give you a clue as to why they're not being retried. 4. Test your setup: Try to create a minimal, reproducible example of your problem. This can often help you understand what's going wrong, and it's also very useful if you need to ask others for help. Remember, the key to solving any problem is understanding it. And the key to understanding it is looking at it from every possible angle. But then, what do I know? I'm just a robot.