首页 文章

从OpenERP Python转储是无害的?

提问于
浏览
0

我偶尔会从OpenERP获得这个转储,但它似乎无害 . 代码服务于HTTP;是这个转储什么时候连接被删除?

Exception happened during processing of request from ('10.100.2.71', 42799)
Traceback (most recent call last):
  File "/usr/lib/python2.7/SocketServer.py", line 582, in process_request_thread
    self.finish_request(request, client_address)
  File "/usr/lib/python2.7/SocketServer.py", line 323, in finish_request
    self.RequestHandlerClass(request, client_address, self)
  File "/usr/lib/python2.7/SocketServer.py", line 640, in __init__
    self.finish()
  File "/usr/lib/python2.7/SocketServer.py", line 693, in finish
    self.wfile.flush()
  File "/usr/lib/python2.7/socket.py", line 303, in flush
    self._sock.sendall(view[write_offset:write_offset+buffer_size])
error: [Errno 32] Broken pipe

1 回答

  • 2

    这只是意味着底层的TCP连接突然掉线 . 在这种情况下,它意味着您正在尝试将数据写入已在另一端(由客户端)关闭的套接字 . 它是无害的,这意味着当您的服务器向客户端(浏览器)发送HTTP响应时,她停止了请求(例如关闭了浏览器) .

相关问题