Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit8dead08

Browse files
committed
Fix lack of message pluralization
1 parente5592c6 commit8dead08

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

‎src/backend/postmaster/postmaster.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5299,8 +5299,10 @@ RegisterBackgroundWorker(BackgroundWorker *worker)
52995299
ereport(LOG,
53005300
(errcode(ERRCODE_CONFIGURATION_LIMIT_EXCEEDED),
53015301
errmsg("too many background workers"),
5302-
errdetail("Up to %d background workers can be registered with the current settings.",
5303-
max_worker_processes),
5302+
errdetail_plural("Up to %d background worker can be registered with the current settings.",
5303+
"Up to %d background workers can be registered with the current settings.",
5304+
max_worker_processes,
5305+
max_worker_processes),
53045306
errhint("Consider increasing the configuration parameter \"max_worker_processes\".")));
53055307
return;
53065308
}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp