Commit 2afa36be authored by Bruce Momjian's avatar Bruce Momjian

Remove ereport() from failed connection; already done, per Tom.

parent 9640cc7d
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.356 2004/01/09 23:11:39 momjian Exp $ * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.357 2004/01/09 23:27:20 momjian Exp $
* *
* NOTES * NOTES
* *
...@@ -2447,11 +2447,7 @@ BackendInit(Port *port) ...@@ -2447,11 +2447,7 @@ BackendInit(Port *port)
status = ProcessStartupPacket(port, false); status = ProcessStartupPacket(port, false);
if (status != STATUS_OK) if (status != STATUS_OK)
{
ereport(LOG,
(errmsg("connection startup failed")));
proc_exit(0); proc_exit(0);
}
/* /*
* Now that we have the user and database name, we can set the process * Now that we have the user and database name, we can set the process
......
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