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.
Created on 2008年09月04日 00:47 by djmdjm, last changed 2022年04月11日 14:56 by admin. This issue is now closed.
| Messages (3) | |||
|---|---|---|---|
| msg72443 - (view) | Author: Damien Miller (djmdjm) | Date: 2008年09月04日 00:47 | |
On OpenBSD I'm seeing intermittent failures of test_httpservers with the
following error:
test_post (test.test_httpservers.CGIHTTPServerTestCase) ... ERROR
======================================================================
ERROR: test_post (test.test_httpservers.CGIHTTPServerTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File
"/usr/ports/lang/python/2.6/w-Python-2.6b3/Python-2.6b3/Lib/test/test_httpservers.py",
line 326, in test_post
res = self.request('/cgi-bin/file2.py', 'POST', params, headers)
File
"/usr/ports/lang/python/2.6/w-Python-2.6b3/Python-2.6b3/Lib/test/test_httpservers.py",
line 64, in request
return self.connection.getresponse()
File
"/usr/ports/lang/python/2.6/w-Python-2.6b3/Python-2.6b3/Lib/httplib.py",
line 949, in getresponse
response.begin()
File
"/usr/ports/lang/python/2.6/w-Python-2.6b3/Python-2.6b3/Lib/httplib.py",
line 418, in begin
self.msg = HTTPMessage(self.fp, 0)
File
"/usr/ports/lang/python/2.6/w-Python-2.6b3/Python-2.6b3/Lib/mimetools.py",
line 24, in __init__
rfc822.Message.__init__(self, fp, seekable)
File
"/usr/ports/lang/python/2.6/w-Python-2.6b3/Python-2.6b3/Lib/rfc822.py",
line 108, in __init__
self.readheaders()
File
"/usr/ports/lang/python/2.6/w-Python-2.6b3/Python-2.6b3/Lib/httplib.py",
line 274, in readheaders
line = self.fp.readline()
File
"/usr/ports/lang/python/2.6/w-Python-2.6b3/Python-2.6b3/Lib/socket.py",
line 395, in readline
data = recv(1)
error: [Errno 4] Interrupted system call
Rerunning the test by itself always passes; maybe a SIGCHLD is
interrupting the recv() call.
Anyway, EINTR is a recoverable error - the socket code should probably
retry the read.
|
|||
| msg105701 - (view) | Author: Stefan Krah (skrah) * (Python committer) | Date: 2010年05月14日 12:20 | |
The EINTR issue should be fixed in trunk (issue1628205). Have you by any chance run the test suite on trunk in the meantime? |
|||
| msg137713 - (view) | Author: Gregory P. Smith (gregory.p.smith) * (Python committer) | Date: 2011年06月05日 20:31 | |
This was fixed in the other bug in 2.6 and 2.7. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:56:38 | admin | set | github: 48021 |
| 2011年06月05日 20:31:39 | gregory.p.smith | set | status: open -> closed nosy: + gregory.p.smith messages: + msg137713 dependencies: + socket.readline() interface doesn't handle EINTR properly resolution: fixed |
| 2010年05月14日 12:20:58 | skrah | set | nosy:
+ skrah messages: + msg105701 |
| 2010年04月18日 22:20:48 | vstinner | set | title: test_httpservers intermittent failure -> test_httpservers intermittent failure, test_post and EINTR |
| 2010年02月09日 16:33:31 | brian.curtin | set | type: crash -> behavior |
| 2008年09月04日 00:47:18 | djmdjm | create | |