1
Usually an AJAX-Request has a certain timeout. For jQuery you can set the timeout (see timeout
in the jQuery docs).
The error in Django results in the fact that in wants to send the response to the request on a connection which already died (because of the timeout).
Source:stackexchange.com