Having some trouble debugging this. I get this error always when i first start my app up, then intermittently thereafter. Could someone please help me by throwing out some d
I came across the same issue ConnectionResetError: [Errno 54] Connection reset by peer
.
In my case the issue was trying to serve static files through development server with debug settings to False
, development server can serve static files only when debug
is set to True
in settings file.
In my settings file i replace
DEBUG = False
with
DEBUG = True
After that, I restart my development server and it works for me!