Commit 6cd2c9f7 authored by Tom Lane's avatar Tom Lane

Ensure that 'disabling statistics collector' is logged in all failure

paths of pgstat_init.  Responds to confusion exhibited by Christoph Haller.
parent ed068249
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
* *
* Copyright (c) 2001-2004, PostgreSQL Global Development Group * Copyright (c) 2001-2004, PostgreSQL Global Development Group
* *
* $PostgreSQL: pgsql/src/backend/postmaster/pgstat.c,v 1.85 2004/11/17 00:14:12 tgl Exp $ * $PostgreSQL: pgsql/src/backend/postmaster/pgstat.c,v 1.86 2004/12/20 19:17:56 tgl Exp $
* ---------- * ----------
*/ */
#include "postgres.h" #include "postgres.h"
...@@ -379,7 +379,7 @@ pgstat_init(void) ...@@ -379,7 +379,7 @@ pgstat_init(void)
* errno will not be set meaningfully here, so don't use it. * errno will not be set meaningfully here, so don't use it.
*/ */
ereport(LOG, ereport(LOG,
(ERRCODE_CONNECTION_FAILURE, (errcode(ERRCODE_CONNECTION_FAILURE),
errmsg("test message did not get through on socket for statistics collector"))); errmsg("test message did not get through on socket for statistics collector")));
closesocket(pgStatSock); closesocket(pgStatSock);
pgStatSock = -1; pgStatSock = -1;
...@@ -401,7 +401,7 @@ pgstat_init(void) ...@@ -401,7 +401,7 @@ pgstat_init(void)
if (test_byte != TESTBYTEVAL) /* strictly paranoia ... */ if (test_byte != TESTBYTEVAL) /* strictly paranoia ... */
{ {
ereport(LOG, ereport(LOG,
(ERRCODE_INTERNAL_ERROR, (errcode(ERRCODE_INTERNAL_ERROR),
errmsg("incorrect test message transmission on socket for statistics collector"))); errmsg("incorrect test message transmission on socket for statistics collector")));
closesocket(pgStatSock); closesocket(pgStatSock);
pgStatSock = -1; pgStatSock = -1;
...@@ -414,12 +414,7 @@ pgstat_init(void) ...@@ -414,12 +414,7 @@ pgstat_init(void)
/* Did we find a working address? */ /* Did we find a working address? */
if (!addr || pgStatSock < 0) if (!addr || pgStatSock < 0)
{
ereport(LOG,
(errcode_for_socket_access(),
errmsg("disabling statistics collector for lack of working socket")));
goto startup_failed; goto startup_failed;
}
/* /*
* Set the socket to non-blocking IO. This ensures that if the * Set the socket to non-blocking IO. This ensures that if the
...@@ -440,6 +435,9 @@ pgstat_init(void) ...@@ -440,6 +435,9 @@ pgstat_init(void)
return; return;
startup_failed: startup_failed:
ereport(LOG,
(errmsg("disabling statistics collector for lack of working socket")));
if (addrs) if (addrs)
freeaddrinfo_all(hints.ai_family, addrs); freeaddrinfo_all(hints.ai_family, addrs);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment