mirror of
https://github.com/postgres/postgres.git
synced 2026-03-13 14:14:09 -04:00
Fix lack of message pluralization
This commit is contained in:
parent
e5592c61ad
commit
8dead08c54
1 changed files with 4 additions and 2 deletions
|
|
@ -5299,8 +5299,10 @@ RegisterBackgroundWorker(BackgroundWorker *worker)
|
|||
ereport(LOG,
|
||||
(errcode(ERRCODE_CONFIGURATION_LIMIT_EXCEEDED),
|
||||
errmsg("too many background workers"),
|
||||
errdetail("Up to %d background workers can be registered with the current settings.",
|
||||
max_worker_processes),
|
||||
errdetail_plural("Up to %d background worker can be registered with the current settings.",
|
||||
"Up to %d background workers can be registered with the current settings.",
|
||||
max_worker_processes,
|
||||
max_worker_processes),
|
||||
errhint("Consider increasing the configuration parameter \"max_worker_processes\".")));
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue