From: Louis Maddox Date: Thu, 25 Mar 2021 11:03:47 +0000 (+0000) Subject: Fix typo to match library default (#1535) X-Git-Tag: 0.18.0~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=68cf1ff88a7f6c0b084bb62455c043aa503713ef;p=thirdparty%2Fhttpx.git Fix typo to match library default (#1535) Matches default given at https://github.com/encode/httpx/blob/master/httpx/_config.py#L359 --- diff --git a/docs/advanced.md b/docs/advanced.md index 0b31b478..07ca28a3 100644 --- a/docs/advanced.md +++ b/docs/advanced.md @@ -667,7 +667,7 @@ You can control the connection pool size using the `limits` keyword argument on the client. It takes instances of `httpx.Limits` which define: - `max_keepalive`, number of allowable keep-alive connections, or `None` to always -allow. (Defaults 10) +allow. (Defaults 20) - `max_connections`, maximum number of allowable connections, or` None` for no limits. (Default 100)