Skip to content

Commit

Permalink
update arg name to max_keepalive_connections (#1309)
Browse files Browse the repository at this point in the history
The old name `max_keepalive` was removed recently, so this updates the docs.
  • Loading branch information
emlazzarin committed Sep 23, 2020
1 parent 27e67b3 commit 257b8fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/advanced.md
Expand Up @@ -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)
```

Expand Down

0 comments on commit 257b8fa

Please sign in to comment.