Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5592c6 commit 8dead08Copy full SHA for 8dead08
src/backend/postmaster/postmaster.c
@@ -5299,8 +5299,10 @@ RegisterBackgroundWorker(BackgroundWorker *worker)
5299
ereport(LOG,
5300
(errcode(ERRCODE_CONFIGURATION_LIMIT_EXCEEDED),
5301
errmsg("too many background workers"),
5302
- errdetail("Up to %d background workers can be registered with the current settings.",
5303
- 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.",
5304
+ max_worker_processes,
5305
+ max_worker_processes),
5306
errhint("Consider increasing the configuration parameter \"max_worker_processes\".")));
5307
return;
5308
}
0 commit comments