diff options
author | Steve Piercy <web@stevepiercy.com> | 2019-11-29 20:30:54 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-29 20:30:54 -0800 |
commit | d20f4db95736534741e0fd177ea3fdd798fd84ca (patch) | |
tree | 624066e3da599e44a8606374aff635c820186de4 | |
parent | 05e965e02f9d73fa6db18a120da1bebcfe429ca2 (diff) | |
parent | 04874e564b1c938412bc90d8164d1350856bd2b3 (diff) | |
download | waitress-d20f4db95736534741e0fd177ea3fdd798fd84ca.tar.gz |
Merge pull request #272 from JonathonReinhart/fix-usage-typos
Fix typos in command line usage text
-rw-r--r-- | waitress/runner.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/waitress/runner.py b/waitress/runner.py index 6797276..863ab7f 100644 --- a/waitress/runner.py +++ b/waitress/runner.py @@ -58,7 +58,7 @@ Standard options: --listen=[::1]:8080 --listen=*:8080 - This option may be used multiple times to listen on multipe sockets. + This option may be used multiple times to listen on multiple sockets. A wildcard for the hostname is also supported and will bind to both IPv4/IPv6 depending on whether they are enabled or disabled. @@ -136,7 +136,7 @@ Tuning options: than this. Default is 524288 (512KB). --connection-limit=INT - Stop creating new channelse if too many are already active. + Stop creating new channels if too many are already active. Default is 100. --cleanup-interval=INT @@ -145,11 +145,11 @@ Tuning options: --channel-timeout=INT Maximum number of seconds to leave inactive connections open. - Default is 120. 'Inactive' is defined as 'has recieved no data + Default is 120. 'Inactive' is defined as 'has received no data from the client and has sent no data to the client'. --[no-]log-socket-errors - Toggle whether premature client disconnect tracepacks ought to be + Toggle whether premature client disconnect tracebacks ought to be logged. On by default. --max-request-header-size=INT |