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 manu
Recipients manu
Date 2016-12-14.09:53:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1481709223.17.0.559234955094.issue28968@psf.upfronthosting.co.za>
In-reply-to
Content
I have used xml rpc library with transport http. My client and server are running on same host.

In normal load scenario(20% cpu usage, 80% memory usage, 18 GB memory free), some request of xml rpc client fails with connection reset by peer error. I have used xmlrpclib.ServerProxy() to call remote method on xml rpc server running on an empherial port.

This issue has happen many times.

log snippet,

  File "/usr/lib64/python2.6/xmlrpclib.py", line 1489, in __request
    verbose=self.__verbose
  File "/usr/lib64/python2.6/xmlrpclib.py", line 1237, in request
    errcode, errmsg, headers = h.getreply()
  File "/usr/lib64/python2.6/httplib.py", line 1064, in getreply
    response = self._conn.getresponse()
  File "/usr/lib64/python2.6/httplib.py", line 990, in getresponse
    response.begin()
  File "/usr/lib64/python2.6/httplib.py", line 391, in begin
    version, status, reason = self._read_status()
  File "/usr/lib64/python2.6/httplib.py", line 349, in _read_status
    line = self.fp.readline()
  File "/usr/lib64/python2.6/socket.py", line 433, in readline
    data = recv(1)
error: [Errno 104] Connection reset by peer
History
Date User Action Args
2016-12-14 09:53:43manusetrecipients: + manu
2016-12-14 09:53:43manusetmessageid: <1481709223.17.0.559234955094.issue28968@psf.upfronthosting.co.za>
2016-12-14 09:53:43manulinkissue28968 messages
2016-12-14 09:53:42manucreate