diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2005-09-12 23:09:05 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2005-09-12 23:09:05 +0000 |
commit | 2a11a4937e97000755db3aa33f83124b0c57e2db (patch) | |
tree | 783b2ba8c3dbe0660a624c0efcd7b064827565cf | |
parent | fe9f96b14c0b69205493c7651879e1fb8e5f5744 (diff) | |
download | postgresql-2a11a4937e97000755db3aa33f83124b0c57e2db.tar.gz postgresql-2a11a4937e97000755db3aa33f83124b0c57e2db.zip |
Fix cut-and-paste-o in TCP keepalives documentation.
-rw-r--r-- | doc/src/sgml/config.sgml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index a57a3070830..dea655b67e7 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -1,5 +1,5 @@ <!-- -$PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.14 2005/09/12 22:39:30 neilc Exp $ +$PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.15 2005/09/12 23:09:05 tgl Exp $ --> <chapter Id="runtime-config"> <title>Run-time Configuration</title> @@ -489,8 +489,9 @@ SET ENABLE_SEQSCAN TO OFF; <para> On systems that support the TCP_KEEPCNT socket option, specifies how many keepalives may be lost before the connection is considered dead. - A value of 0 uses the system default. If TCP_KEEPINTVL is not - supported, this parameter must be 0. + A value of 0 uses the system default. If TCP_KEEPCNT is not + supported, this parameter must be 0. This option is ignored + for connections made via a Unix-domain socket. </para> </listitem> </varlistentry> |