1

我在 django 的开发服务器上运行 django。它以前工作正常,但从昨天开始,我一直在服务器运行的 linux 命令行上收到此错误。

Exception happened during processing of request from ('57.xx.xx.123', 63721)
Traceback (most recent call last):
  File "/opt/python27/lib/python2.7/SocketServer.py", line 284, in _handle_reque                                                                             st_noblock
    self.process_request(request, client_address)
  File "/opt/python27/lib/python2.7/SocketServer.py", line 310, in process_reque                                                                             st
    self.finish_request(request, client_address)
  File "/opt/python27/lib/python2.7/SocketServer.py", line 323, in finish_reques                                                                             t
    self.RequestHandlerClass(request, client_address, self)
  File "/opt/python27/lib/python2.7/site-packages/django/core/servers/basehttp.p                                                                             y", line 570, in __init__
    BaseHTTPRequestHandler.__init__(self, *args, **kwargs)
  File "/opt/python27/lib/python2.7/SocketServer.py", line 641, in __init__
    self.finish()
  File "/opt/python27/lib/python2.7/SocketServer.py", line 694, in finish
    self.wfile.flush()
  File "/opt/python27/lib/python2.7/socket.py", line 301, in flush
    self._sock.sendall(view[write_offset:write_offset+buffer_size])
error: [Errno 32] Broken pipe

谁能指导我为什么现在开始发生

这种情况只发生 10 次

4

2 回答 2

1

“断开的管道”意味着当目标关闭时,文件描述符(在本例中为套接字)上仍有传出数据。

在这种情况下,最可能的原因是浏览器在 Django 开发服务器发送整个响应之前关闭了连接。

于 2011-07-07T15:01:47.580 回答
0

偶尔我会在异常之后看到一个损坏的管道,或者在进行跨浏览器/平台测试时从 Windows 连接到我的 Linux 机器时。我不确定是什么导致了这些错误,但是我知道重启 Django 的开发服务器是修复它的唯一方法。

于 2011-07-07T14:54:44.883 回答