Message 272228 - Python tracker

Message272228

Author kristjan.jonsson
Recipients SG, asvetlov, berker.peksag, iMath, kristjan.jonsson, pje, r.david.murray, steve.dower, tim.golden
Date 2016-08-09.09:45:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1470735918.93.0.930563411612.issue27682@psf.upfronthosting.co.za>
In-reply-to
Content
This error is a protocol error.  It is the analog to WSAECONNRESET.
ECONNRESET occurs when the local host receives a RST packet from the peer, usually because the peer closed the connection.
WSAECONNABORT occurs when the local tcp layer decides that the connection is dead, (it may have sent RST to the peer itself).  This can occur for various reasons.  Often because the client has cone away, closed the connection or other things.  It is best to treat WSACONNRESET as WSACONNABORT, i.e., there was a TCP protocol error and the transaction (http request) probably wasn't completed completely by both parties.  See also here:
https://www.chilkatsoft.com/p/p_299.asp

In your case, I would expect a problem with the client uploading the file.  It probably closes the connection after sending the data without waiting for the http response.
History
Date User Action Args
2016-08-09 09:45:18kristjan.jonssonsetrecipients: + kristjan.jonsson, pje, tim.golden, r.david.murray, asvetlov, berker.peksag, steve.dower, iMath, SG
2016-08-09 09:45:18kristjan.jonssonsetmessageid: <1470735918.93.0.930563411612.issue27682@psf.upfronthosting.co.za>
2016-08-09 09:45:18kristjan.jonssonlinkissue27682 messages
2016-08-09 09:45:18kristjan.jonssoncreate