diff options
author | Melanie Plageman | 2025-05-22 21:14:54 +0000 |
---|---|---|
committer | Melanie Plageman | 2025-05-22 21:14:54 +0000 |
commit | cb1456423d3925f9c70a488b58f03f186561f00f (patch) | |
tree | 1db4af02043f1a28fed754713d963cfa0b98c540 /src/interfaces | |
parent | d376ab570ef95f2eae13a77cbd9ba21383f195f7 (diff) |
Replace deprecated log_connections values in docs and tests
9219093cab2607f modularized log_connections output to allow more
granular control over which aspects of connection establishment are
logged. It converted the boolean log_connections GUC into a list of strings
and deprecated previously supported boolean-like values on, off, true,
false, 1, 0, yes, and no. Those values still work, but they are
supported mainly for backwards compatability. As such, documented
examples of log_connections should not use these deprecated values.
Update references in the docs to deprecated log_connections values. Many
of the tests use log_connections. This commit also updates the tests to
use the new values of log_connections. In some of the tests, the updated
log_connections value covers a narrower set of aspects (e.g. the
'authentication' aspect in the tests in src/test/authentication and the
'receipt' aspect in src/test/postmaster). In other cases, the new value
for log_connections is a superset of the previous included aspects (e.g.
'all' in src/test/kerberos/t/001_auth.pl).
Reported-by: Peter Eisentraut <[email protected]>
Author: Melanie Plageman <[email protected]>
Reviewed-by: Peter Eisentraut <[email protected]>
Reviewed-by: Jacob Champion <[email protected]>
Discussion: https://postgr.es/m/e1586594-3b69-4aea-87ce-73a7488cdc97%40eisentraut.org
Diffstat (limited to 'src/interfaces')
-rw-r--r-- | src/interfaces/libpq/t/005_negotiate_encryption.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/libpq/t/005_negotiate_encryption.pl b/src/interfaces/libpq/t/005_negotiate_encryption.pl index f6a453c1b41..ac6d8bcb4a6 100644 --- a/src/interfaces/libpq/t/005_negotiate_encryption.pl +++ b/src/interfaces/libpq/t/005_negotiate_encryption.pl @@ -107,7 +107,7 @@ $node->append_conf( listen_addresses = '$hostaddr' # Capturing the EVENTS that occur during tests requires these settings -log_connections = on +log_connections = 'receipt,authentication,authorization' log_disconnections = on trace_connection_negotiation = on lc_messages = 'C' |