目前我正在使用python内置的应用程序。当我在个人计算机上运行它时,它可以正常工作。
但是,当我将其移至生产服务器时。它不断向我显示附加的错误,如下所示:。
我做了一些研究,我得到了最终用户浏览器在服务器仍在忙于发送数据时停止连接的原因。
我想知道为什么会发生这种情况,以及阻止它在生产服务器中正常运行的根本原因是什么,而它在我的个人计算机上运行。任何建议表示赞赏
Exception happened during processing of request from ('127.0.0.1', 34226)
Traceback (most recent call last):
File "/usr/lib/python2.7/SocketServer.py", line 284, in
_handle_request_noblock
self.process_request(request, client_address)
File "/usr/lib/python2.7/SocketServer.py", line 310, in process_request
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 641, in __init__
self.finish()
File "/usr/lib/python2.7/SocketServer.py", line 694, 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