From 291da1a41f817528af5da0976be13f110a06eb9f Mon Sep 17 00:00:00 2001 From: Steve Chavez Date: Fri, 21 Apr 2023 19:20:46 -0500 Subject: [PATCH] Clarify pool connection features --- docs/releases/v10.2.0.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/releases/v10.2.0.rst b/docs/releases/v10.2.0.rst index 5d1e1cebf..3011e470e 100644 --- a/docs/releases/v10.2.0.rst +++ b/docs/releases/v10.2.0.rst @@ -7,15 +7,15 @@ This minor version adds bug fixes and some features that provide stability to v1 Features -------- -Connection Lifetime -~~~~~~~~~~~~~~~~~~~ +Pool Connection Lifetime +~~~~~~~~~~~~~~~~~~~~~~~~ To prevent memory leaks caused by long-lived connections, PostgREST limits their lifetime in the pool through :ref:`db-pool-max-lifetime`. -Connection Timeout -~~~~~~~~~~~~~~~~~~ +Pool Connection Acquisition Timeout +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -There is now a time limit to wait for new connections in the pool, that is, if a new request cannot get a connection in the time specified in :ref:`db-pool-acquisition-timeout` then a response with ``504`` status is returned +There is now a time limit to wait for pool connections to be acquired. If a new request cannot get a connection in the time specified in :ref:`db-pool-acquisition-timeout` then a response with a ``504`` status is returned. Documentation improvements ~~~~~~~~~~~~~~~~~~~~~~~~~~