Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
80390f49
Commit
80390f49
authored
Apr 05, 2010
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve phrasing of warning message for NOTIFY queue getting too full.
Per gripe from Peter.
parent
87ecae72
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/backend/commands/async.c
src/backend/commands/async.c
+4
-4
No files found.
src/backend/commands/async.c
View file @
80390f49
...
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/commands/async.c,v 1.15
5 2010/02/26 02:00:37 momjian
Exp $
* $PostgreSQL: pgsql/src/backend/commands/async.c,v 1.15
6 2010/04/05 00:42:24 tgl
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -1421,12 +1421,12 @@ asyncQueueFillWarning(void)
}
ereport
(
WARNING
,
(
errmsg
(
"
pg_notify
queue is %.0f%% full"
,
fillDegree
*
100
),
(
errmsg
(
"
NOTIFY
queue is %.0f%% full"
,
fillDegree
*
100
),
(
minPid
!=
InvalidPid
?
errdetail
(
"
PID %d is among the slowest backend
s."
,
minPid
)
errdetail
(
"
The server process with PID %d is among those with the oldest transaction
s."
,
minPid
)
:
0
),
(
minPid
!=
InvalidPid
?
errhint
(
"
Cleanup can only proceed if this backend
ends its current transaction."
)
errhint
(
"
The NOTIFY queue cannot be emptied until that process
ends its current transaction."
)
:
0
)));
asyncQueueControl
->
lastQueueFillWarn
=
t
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment