From: emlazzarin <1141361+emlazzarin@users.noreply.github.com> Date: Wed, 23 Sep 2020 09:42:21 +0000 (-0700) Subject: update arg name to `max_keepalive_connections` (#1309) X-Git-Tag: 0.15.2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=257b8fab6adae656bbe577da9221f142526a9a9f;p=thirdparty%2Fhttpx.git update arg name to `max_keepalive_connections` (#1309) The old name `max_keepalive` was removed recently, so this updates the docs. --- diff --git a/docs/advanced.md b/docs/advanced.md index 9fa3a35e..1b0ecee7 100644 --- a/docs/advanced.md +++ b/docs/advanced.md @@ -669,7 +669,7 @@ allow. (Defaults 10) ```python -limits = httpx.Limits(max_keepalive=5, max_connections=10) +limits = httpx.Limits(max_keepalive_connections=5, max_connections=10) client = httpx.Client(limits=limits) ```