From 95b44bb025b5d13c673662af68a218bd1873861f Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Thu, 20 Jun 2024 11:10:26 +0200 Subject: Unify some error messages --- src/backend/postmaster/bgworker.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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; } -- cgit v1.2.3