I’m using HTTP.jl to POST data to a REST service, and every thirty minutes (it’s very regular), I’m hitting ERROR: LoadError: IOError(read: connection reset by peer (ECONNRESET) during request
. Does that ring a bell to anybody? I can retry, and usually it works out, but it’s still a bit worrying.
Does HTTP.jl keep the connection to the server alive, or does it create a new connection on each request? My understanding of web protocols is fuzzy, so apologies if this is nonsensical