Dustin Currie
Dustin Currie
This was happening to me as well. I wrote a pass through service using echo that posted data to a partner API. Eventually I got this: echo => panic recover\n...
My solution was to go back the the net/http library. The growing file descriptor count issue can be fixed by disabling keep-alives, but the panic on connection reset makes this...
Say you have 100k requests to send, all scheduled in different goroutines, any library based on net/http will attempt to open connections and send the requests independently. This means--depending on...
Nice! Looks like I need to look deeper into my error then. Good to know!