Skip to content

Commit

Permalink
fixing client.rst documentation linting
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelcolvin authored and fafhrd91 committed Feb 23, 2017
1 parent b27962b commit d837166
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion docs/client.rst
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,17 @@ parameter to *connector*::

conn = aiohttp.TCPConnector(limit=30)

The example limits amount of parallel connections to `30`.
The example limits total amount of parallel connections to `30`.

The default is `100`.

If you explicitly want not to have limits, pass `0`. For example::

conn = aiohttp.TCPConnector(limit=0)

To limit amount of simultaneously opened connection to the same
endpoint (``(host, port, is_ssl)`` triple) you can pass *limit_per_host*
parameter to *connector*::

The default is `20`.

Expand Down

0 comments on commit d837166

Please sign in to comment.