From: Chris Roberts Date: Fri, 4 Feb 2022 21:52:07 +0000 (-0600) Subject: Fix typo in prepared statements+pooling warning X-Git-Tag: pool-3.1~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b080cc28b45b03bbfdd0995b8641a1c7c0eea26e;p=thirdparty%2Fpsycopg.git Fix typo in prepared statements+pooling warning --- diff --git a/docs/advanced/prepare.rst b/docs/advanced/prepare.rst index d7b273517..226a55edb 100644 --- a/docs/advanced/prepare.rst +++ b/docs/advanced/prepare.rst @@ -53,5 +53,5 @@ Statement preparation can be controlled in several ways: Using external connection poolers, such as PgBouncer, is not compatible with prepared statements, because the same client connection may change the server session it refers to. If such middleware is used you should - disable connection pooling, by setting the `Connection.prepare_threshold` + disable prepared statements, by setting the `Connection.prepare_threshold` attribute to `!None`.