PERL API error 500 server closed connection without sending any data back

I am running the PERL API , which uses LWP::UserAgent to send form data to a file.
Sometimes I get this error in large files:

"500 closed connection to the server without sending any data"

Any suggestions as to why?
The timeout does not seem to be a problem, since it is set to an astronomical number.

+6
source share
1 answer

If the answer you have has the Client-Warning heading, as you can see from the answer below, then this is a tcp-level error, and the response is created by the LWP client, not the server:

 500 Server closed connection without sending any data back Content-Type: text/plain Client-Date: Thu, 19 Sep 2013 08:04:28 GMT Client-Warning: Internal response 
+6
source

Source: https://habr.com/ru/post/945191/


All Articles