projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a8fd13c
)
Fix lack of message pluralization
author
Peter Eisentraut
Wed, 14 Jul 2021 07:15:14 +0000
(09:15 +0200)
committer
Peter Eisentraut
Wed, 14 Jul 2021 07:15:14 +0000
(09:15 +0200)
src/backend/storage/ipc/signalfuncs.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/storage/ipc/signalfuncs.c
b/src/backend/storage/ipc/signalfuncs.c
index 43386c5bb327422c7ebfac7bb84433411d2ab61d..de69d60e79e79d7dd7e2a2ac159ae249eb44fecf 100644
(file)
--- a/
src/backend/storage/ipc/signalfuncs.c
+++ b/
src/backend/storage/ipc/signalfuncs.c
@@
-180,8
+180,10
@@
pg_wait_until_termination(int pid, int64 timeout)
} while (remainingtime > 0);
ereport(WARNING,
- (errmsg("backend with PID %d did not terminate within %lld milliseconds",
- pid, (long long int) timeout)));
+ (errmsg_plural("backend with PID %d did not terminate within %lld millisecond",
+ "backend with PID %d did not terminate within %lld milliseconds",
+ timeout,
+ pid, (long long int) timeout)));
return false;
}