django1/django/core/servers
atsuo ishimoto a9c6ab0356 Fixed #30619 -- Made runserver --nothreading use single threaded WSGIServer.
Browsers often use multiple connections with Connection: keep-alive.
If --nothreading is specified, the WSGI server cannot accept new
connections until the old connection is closed, causing hangs.

Force Connection: close when --nothreading option is used.
2019-07-10 13:22:17 +02:00
..
__init__.py Added 'django-admin.py runserver', which starts a lightweight development server running Django on a local port 2005-07-18 15:25:58 +00:00
basehttp.py Fixed #30619 -- Made runserver --nothreading use single threaded WSGIServer. 2019-07-10 13:22:17 +02:00