I had the same problem. You are hitting hangfire’s invisibilityTimeout. You have two options.
- increase the timeout to more than the job will ever take to run
- have the job send a heartbeat to let hangfire’s know it’s still alive.
I had the same problem. You are hitting hangfire’s invisibilityTimeout. You have two options.