I just figured this out, at least in my use case.
I was getting ECONNRESET
. It turned out that the way my client was set up, it was hitting the server with an API call a ton of times really quickly -- and it only needed to hit the endpoint once.
When I fixed that, the error was gone.