This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eacb
Recipients eacb, r.david.murray
Date 2015-06-07.18:19:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1433701172.53.0.99609244583.issue24397@psf.upfronthosting.co.za>
In-reply-to
Content
The issue is that this buffer is also emptied at the end.

Current version assumes that the server thread will not have enough opportunity to send the whole buffer before receiving a RST.

But in reality, it's quite possible (happens reliably on a box) that:
1. many server sent chars get merged in one packet
and/or
2. RST is yielded only once the server have put all its buffer in send queue.

As a consequence, server's buffer is empty at the time it is checked, and the test is marked as failed although everything worked fine.
History
Date User Action Args
2015-06-07 18:19:32eacbsetrecipients: + eacb, r.david.murray
2015-06-07 18:19:32eacbsetmessageid: <1433701172.53.0.99609244583.issue24397@psf.upfronthosting.co.za>
2015-06-07 18:19:32eacblinkissue24397 messages
2015-06-07 18:19:32eacbcreate