Skip to content

Commit 2afa36b

Browse files
committed
Remove ereport() from failed connection; already done, per Tom.
1 parent 9640cc7 commit 2afa36b

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/backend/postmaster/postmaster.c

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
*
3838
*
3939
* IDENTIFICATION
40-
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.356 2004/01/09 23:11:39 momjian Exp $
40+
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.357 2004/01/09 23:27:20 momjian Exp $
4141
*
4242
* NOTES
4343
*
@@ -2447,11 +2447,7 @@ BackendInit(Port *port)
24472447
status = ProcessStartupPacket(port, false);
24482448

24492449
if (status != STATUS_OK)
2450-
{
2451-
ereport(LOG,
2452-
(errmsg("connection startup failed")));
24532450
proc_exit(0);
2454-
}
24552451

24562452
/*
24572453
* Now that we have the user and database name, we can set the process

0 commit comments

Comments
 (0)