summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Eisentraut2024-06-20 09:10:26 +0000
committerPeter Eisentraut2024-06-20 09:10:26 +0000
commit95b44bb025b5d13c673662af68a218bd1873861f (patch)
tree01eebaea476738e5182b638901e5040522b36b74 /src
parentc61c0cb3a99285db36806b592bd8c540c98757e5 (diff)
Unify some error messages
Diffstat (limited to 'src')
-rw-r--r--src/backend/postmaster/bgworker.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/postmaster/bgworker.c b/src/backend/postmaster/bgworker.c
index fa52b6dfa83..b37ccb85ad6 100644
--- a/src/backend/postmaster/bgworker.c
+++ b/src/backend/postmaster/bgworker.c
@@ -928,7 +928,7 @@ RegisterBackgroundWorker(BackgroundWorker *worker)
"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\".")));
+ errhint("Consider increasing the configuration parameter \"%s\".", "max_worker_processes")));
return;
}