加载django模板时发生异常

时间:2013-10-28 20:05:17

标签: python django django-templates

我刚刚升级到Django 1.5并且在加载模板时看到了这个异常:

Exception happened during processing of request from ('127.0.0.1', 50545)
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 "/home/redacted/.virtualenvs/redacted/local/lib/python2.7/site-packages/django/core/servers/basehttp.py", line 150, in __init__
    super(WSGIRequestHandler, self).__init__(*args, **kwargs)
  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 个答案:

答案 0 :(得分:1)

看起来这只是一个old quirk with the dev serverdjango ticket已解决,因为无法修复。