summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorashutosh-mishra <ashutosh.mishra@oneconvergence.com>2015-11-10 19:46:09 +0530
committerSergey Shepelev <temotor@gmail.com>2015-11-11 01:07:32 +0500
commit503c584a7d30d7ced1509df2c0c9262be1157589 (patch)
treef7934c97018b187ab9f5c91bd4f0c3a2f143a846
parentda7f9732b6d9d52c8bca5cdbb536beb1fac14b44 (diff)
downloadeventlet-p262.tar.gz
wsgi: document default value for max_size (1024); Thanks to ashutosh-mishrap262
-rw-r--r--eventlet/wsgi.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/eventlet/wsgi.py b/eventlet/wsgi.py
index 7d7df7c..88e7752 100644
--- a/eventlet/wsgi.py
+++ b/eventlet/wsgi.py
@@ -787,6 +787,7 @@ def server(sock, site,
If not specified, sys.stderr is used.
:param environ: Additional parameters that go into the environ dictionary of every request.
:param max_size: Maximum number of client connections opened at any time by this server.
+ Default is 1024.
:param max_http_version: Set to "HTTP/1.0" to make the server pretend it only supports HTTP 1.0.
This can help with applications or clients that don't behave properly using HTTP 1.1.
:param protocol: Protocol class. Deprecated.