﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
30619	wsgi server doesn't respond if --nothreading specified	Atsuo Ishimoto	nobody	"Client: Chrome 75.0.3770.100/Firefox 67.0.4 on macOS 10.14.5.
Server: macOS 10.14.5., Python 3.7.3, Django 2.2.3

Running web application with single-threaded wsgi server may stop responding.


This is because Web browser uses multiple connection, and all of them has Connection: keep-alive header by default.

When the first request is finished, wsgi server continue to read the socket first request used because the connection is `keep-alive`.

So, the second connection is kept waiting without accepted by wsgi server,  until the fist connection is closed. But the first connection will not be  closed by browser for very long time.

"	Bug	new	Core (Other)	2.2	Normal				Unreviewed	0	0	0	0	0	0
