Django : An Established Connection Was Aborted By The Software In Your Host Machine
I am getting this error when i add a specific line in the post request. views.py class LoginVerify(View): print('login') email ='' pswd = '' username ='' def
Solution 1:
I usually get this when running on my local machine in debug mode usually happens if the server responds to a request and the client has already closed the connection. You may ignore the error or use a different production server such as gunicorn which has better server socket handling. FYI i see this error on python 2.7
Post a Comment for "Django : An Established Connection Was Aborted By The Software In Your Host Machine"