Hi @MinHyeong-Lee
I am also facing the same issue. It’s happening whenever a job fails (in my case pulling emails from email account fails) and I have to manually remove those failed jobs from the redis-queue everytime.
Is there any stable solution that you may have figured out ?
Hi @root
In my experience, there was an issue with the code. I believed it was caused by a conflict with how RQ jobs operate.
When trying to run a function that works asynchronously—such as one using async or threading—within an RQ job, I remember encountering an error like the one in the attached image.
It’s been a long time, so I don’t remember the details exactly—sorry about that.
But what I do remember clearly is that, in my case, the problem was resolved when I reimplemented the function using a different approach that performed the same task.