Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Fix description of
min_connections
(#2687)
On `PoolOptions::connect()`, we open at least `min_connections` connections, or 1 if unset. Therefore, the expression needs to be `max()`. (`min(1, x)` would mean we always open only a single connection).
- Loading branch information