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 kc
Recipients Anthony.Kong, LorenzMende, ajaksu2, dheiberg, ggenellina, jjlee, kc, martin.panter, matejcik, orsenthil
Date 2019-02-15.17:28:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1550251686.72.0.50659702243.issue5038@roundup.psfhosted.org>
In-reply-to
Content
PR 11843 should fix the issue in master, I didn't check python 2.6 or prior versions. The problem is that in the first request sent to HTTP service the POST data is sent correctly. After that the HTTP server responds with 401 and the request is resent but the mmap file pointer is pointing now to the end of the file because it has been fully read in the requests before. The PR just seeks to the beginning of the file after the file has been read and sends the request with auth credentials including POST body.
History
Date User Action Args
2019-02-15 17:28:06kcsetrecipients: + kc, jjlee, ggenellina, orsenthil, ajaksu2, matejcik, Anthony.Kong, martin.panter, LorenzMende, dheiberg
2019-02-15 17:28:06kcsetmessageid: <1550251686.72.0.50659702243.issue5038@roundup.psfhosted.org>
2019-02-15 17:28:06kclinkissue5038 messages
2019-02-15 17:28:06kccreate