I’m running an application in Python that uses asyncio and it’s failing when I’m calling the function await asyncio.gather()
The error I’m getting is just Process 90788 failed to create lock file
and the process just exits, without showing any traces of the error. I can see that the process received a SIGABRT
signal, but nothing else.
How can I debug this?
I’m using Virtual Studio Code for my debugging, so if it’s possible to debug it there, I would prefer it over other solutions, but anything with other tools will be useful as well.