Skip to content

Commit 2e7835f

Browse files
committed
New shutdown wording:
This connection has been terminated by the administrator
1 parent 08bf4d6 commit 2e7835f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/backend/tcop/postgres.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.210 2001/03/13 01:17:06 tgl Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.211 2001/03/14 15:14:35 momjian Exp $
1212
*
1313
* NOTES
1414
* this is the "main" module of the postgres backend and
@@ -1034,7 +1034,7 @@ ProcessInterrupts(void)
10341034
ProcDiePending = false;
10351035
QueryCancelPending = false; /* ProcDie trumps QueryCancel */
10361036
ImmediateInterruptOK = false; /* not idle anymore */
1037-
elog(FATAL, "The system is shutting down");
1037+
elog(FATAL, "This connection has been terminated by the administrator");
10381038
}
10391039
if (QueryCancelPending)
10401040
{
@@ -1692,7 +1692,7 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[], const cha
16921692
if (!IsUnderPostmaster)
16931693
{
16941694
puts("\nPOSTGRES backend interactive interface ");
1695-
puts("$Revision: 1.210 $ $Date: 2001/03/13 01:17:06 $\n");
1695+
puts("$Revision: 1.211 $ $Date: 2001/03/14 15:14:35 $\n");
16961696
}
16971697

16981698
/*

0 commit comments

Comments
 (0)