I have rest api server,which is written in golang using gin framework and deployed on windows machine.
Sometime it get hang without any error.
How to identify the error
I have rest api server,which is written in golang using gin framework and deployed on windows machine.
Sometime it get hang without any error.
How to identify the error
Hi, @packs,
Try running it in a debugger. Hit pause after a few seconds and then look at the goroutines to see what they’re doing. Maybe all the goroutines are deadlocked on something.