File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 7
7
* Portions Copyright (c) 1994, Regents of the University of California
8
8
*
9
9
* IDENTIFICATION
10
- * $PostgreSQL: pgsql/src/backend/commands/async.c,v 1.155 2010/02/26 02: 00:37 momjian Exp $
10
+ * $PostgreSQL: pgsql/src/backend/commands/async.c,v 1.156 2010/04/05 00:42:24 tgl Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
@@ -1421,12 +1421,12 @@ asyncQueueFillWarning(void)
1421
1421
}
1422
1422
1423
1423
ereport (WARNING ,
1424
- (errmsg ("pg_notify queue is %.0f%% full" , fillDegree * 100 ),
1424
+ (errmsg ("NOTIFY queue is %.0f%% full" , fillDegree * 100 ),
1425
1425
(minPid != InvalidPid ?
1426
- errdetail ("PID %d is among the slowest backends ." , minPid )
1426
+ errdetail ("The server process with PID %d is among those with the oldest transactions ." , minPid )
1427
1427
: 0 ),
1428
1428
(minPid != InvalidPid ?
1429
- errhint ("Cleanup can only proceed if this backend ends its current transaction." )
1429
+ errhint ("The NOTIFY queue cannot be emptied until that process ends its current transaction." )
1430
1430
: 0 )));
1431
1431
1432
1432
asyncQueueControl -> lastQueueFillWarn = t ;
You can’t perform that action at this time.
0 commit comments