Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix limit docs #8930

Merged
merged 1 commit into from
Aug 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/client_reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -974,7 +974,7 @@ is controlled by *force_close* constructor's parameter).
flag.

:param int limit: total number simultaneous connections. If *limit* is
``None`` the connector has no limit (default: 100).
``0`` the connector has no limit (default: 100).

:param int limit_per_host: limit simultaneous connections to the same
endpoint. Endpoints are the same if they are
Expand Down Expand Up @@ -1019,7 +1019,7 @@ is controlled by *force_close* constructor's parameter).
Endpoints are the same if they are have equal ``(host, port,
is_ssl)`` triple.

If *limit_per_host* is ``None`` the connector has no limit per host.
If *limit_per_host* is ``0`` the connector has no limit per host.

Read-only property.

Expand Down Expand Up @@ -1114,7 +1114,7 @@ is controlled by *force_close* constructor's parameter).
updated refreshing each entry after N seconds.

:param int limit: total number simultaneous connections. If *limit* is
``None`` the connector has no limit (default: 100).
``0`` the connector has no limit (default: 100).

:param int limit_per_host: limit simultaneous connections to the same
endpoint. Endpoints are the same if they are
Expand Down
Loading