diff options
| author | Jannis Leidel <jannis@leidel.info> | 2011-06-17 13:08:36 +0000 |
|---|---|---|
| committer | Jannis Leidel <jannis@leidel.info> | 2011-06-17 13:08:36 +0000 |
| commit | ce165f7bbf0c481a20db6b4b9f764b8bb89348ba (patch) | |
| tree | eed18aee4f70ba15f3929fafd42b8a5d322ea344 /docs/man/django-admin.1 | |
| parent | 838a16ec2055cd9736c9d426acf9fdd092e72469 (diff) | |
Fixed #16099 -- Enabled threading for the runserver management command and added a --nothreading option to disable it if needed. This should help Google Chrome users because it opens more than one connection speculatively.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16427 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/man/django-admin.1')
| -rw-r--r-- | docs/man/django-admin.1 | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/man/django-admin.1 b/docs/man/django-admin.1 index 73815ef68b..62e45ae50e 100644 --- a/docs/man/django-admin.1 +++ b/docs/man/django-admin.1 @@ -75,7 +75,7 @@ Runs this project as a FastCGI application. Requires flup. Use .B runfcgi help for help on the KEY=val pairs. .TP -.BI "runserver [" "\-\-noreload" "] [" "\-\-nostatic" "] [" "\-\-insecure" "] [" "\-\-ipv6" "] [" "\-\-adminmedia=ADMIN_MEDIA_PATH" "] [" "port|ipaddr:port" "]" +.BI "runserver [" "\-\-noreload" "] [" "\-\-nothreading" "] [" "\-\-nostatic" "] [" "\-\-insecure" "] [" "\-\-ipv6" "] [" "\-\-adminmedia=ADMIN_MEDIA_PATH" "] [" "port|ipaddr:port" "]" Starts a lightweight Web server for development. .TP .BI "shell [" "\-\-plain" "]" @@ -167,6 +167,9 @@ Disable the development server's auto\-reloader. .I \-\-nostatic Disable automatic serving of static files from STATIC_URL. .TP +.I \-\-nothreading +Disable the development server's threading. +.TP .I \-\-insecure Enables serving of static files even if DEBUG is False. .TP |
