2016-08-02 34 views
2

我使用Django的PostgreSQL的,每當我試圖保存或刪除任何中止,出現此錯誤 -Django的ConnectionAbortedError:[WinError 10053]一個已建立的連接被軟件在主機

Traceback (most recent call last): 
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 138, in run 
self.finish_response() 
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 180, in finish_response 
self.write(data) 
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 274, in write 
self.send_headers() 
Not Found: /favicon.ico 
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 332, in send_headers 
self.send_preamble() 
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 255, in send_preamble 
('Date: %s\r\n' % format_date_time(time.time())).encode('iso-8859-1') 
[02/Aug/2016 18:30:14] "GET /favicon.ico HTTP/1.1" 404 2044 
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 453, in _write 
self.stdout.write(data) 
File "c:\program files (x86)\python35-32\Lib\socket.py", line 593, in write 
return self._sock.send(b) 
ConnectionAbortedError: [WinError 10053] An established connection was aborted by the software in your host machine 
[02/Aug/2016 18:30:14] "GET /api/delete/ HTTP/1.1" 500 59 
---------------------------------------- 
Exception happened during processing of request from ('127.0.0.1', 1712) 
Traceback (most recent call last): 
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 138, in run 
self.finish_response() 
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 180, in finish_response 
self.write(data) 
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 274, in write 
self.send_headers() 
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 332, in send_headers 
self.send_preamble() 
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 255, in send_preamble 
('Date: %s\r\n' % format_date_time(time.time())).encode('iso-8859-1') 
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 453, in _write 
self.stdout.write(data) 
File "c:\program files (x86)\python35-32\Lib\socket.py", line 593, in write 
return self._sock.send(b) 
ConnectionAbortedError: [WinError 10053] An established connection was aborted by the software in your host machine 

During handling of the above exception, another exception occurred: 

Traceback (most recent call last): 
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 141, in run 
self.handle_error() 
File "C:\Users\sushant\Desktop\projects\drfapi\venv\lib\site-packages\django\core\servers\basehttp.py", line 92, in handle_error 
super(ServerHandler, self).handle_error() 
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 368, in handle_error 
self.finish_response() 
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 180, in finish_response 
self.write(data) 
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 274, in write 
self.send_headers() 
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 331, in send_headers 
if not self.origin_server or self.client_is_modern(): 
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 344, in client_is_modern 
return self.environ['SERVER_PROTOCOL'].upper() != 'HTTP/0.9' 
TypeError: 'NoneType' object is not subscriptable 

During handling of the above exception, another exception occurred: 

Traceback (most recent call last): 
File "c:\program files (x86)\python35-32\Lib\socketserver.py", line 628, in process_request_thread 
self.finish_request(request, client_address) 
File "c:\program files (x86)\python35-32\Lib\socketserver.py", line 357, in finish_request 
self.RequestHandlerClass(request, client_address, self) 
File "C:\Users\sushant\Desktop\projects\drfapi\venv\lib\site-packages\django\core\servers\basehttp.py", line 99, in __init__ 
super(WSGIRequestHandler, self).__init__(*args, **kwargs) 
File "c:\program files (x86)\python35-32\Lib\socketserver.py", line 684, in __init__ 
self.handle() 
File "C:\Users\sushant\Desktop\projects\drfapi\venv\lib\site-packages\django\core\servers\basehttp.py", line 179, in handle 
handler.run(self.server.get_app()) 
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 144, in run 
self.close() 
File "c:\program files (x86)\python35-32\Lib\wsgiref\simple_server.py", line 35, in close 
self.status.split(' ',1)[0], self.bytes_sent 
AttributeError: 'NoneType' object has no attribute 'split' 
---------------------------------------- 

什麼只要有數據庫保存\刪除命令存在,它會被執行兩次,第一次沒有錯誤,第二次拋出這個錯誤,因此保存被執行兩次。

我的理解是某些程序阻止了它(如錯誤所述),因此我刪除了我所擁有但尚未得出結論的防病毒軟件。

有沒有人有任何想法這是什麼?

+0

你可能會檢查你的Windows事件日誌 - 它看起來像是殺了你的開放連接,所以它不能正確地將響應發送到瀏覽器,或任何你連接。你也可以嘗試使用'requests'來自動化它,看看你是否可以通過這種方式獲得更多的信息。 –

+0

我在事件日誌中找不到任何東西 – ThatBird

回答

-1

所以如果有人得到這個錯誤,請將您的python更新到最新版本。這是一個已修復的python bug。

+0

我正在使用最新版本,並且出現同樣的問題 – Lemayzeur

+0

這是一個python錯誤。我已經在python社區開放了這個問題。同時,使用Ubuntu(這是我必須要做的) – ThatBird

+0

是否是一個問題,如果我繼續而不擔心我的django項目中的這個錯誤,直到託管? – Lemayzeur

相關問題