update arg name to max_keepalive_connections (#1309)

The old name `max_keepalive` was removed recently, so this updates the docs.
This commit is contained in:
emlazzarin 2020-09-23 02:42:21 -07:00 committed by GitHub
parent 27e67b32e9
commit 257b8fab6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)
```