diff options
author | Peter Eisentraut | 2024-05-17 11:48:31 +0000 |
---|---|---|
committer | Peter Eisentraut | 2024-05-17 11:48:31 +0000 |
commit | e9b7aee27283e65bd8819cd7a081dbe79eb1c1a3 (patch) | |
tree | 72abeed96cd0d35452a82749db6709f97017878f /src/backend/postmaster/bgworker.c | |
parent | 17974ec259463869bb6bb4885d46847422fbc9ec (diff) |
A few follow-up fixes for GUC name quoting
Fixups for 17974ec259: Some messages were missed (and some were new
since the patch was originally proposed), and there was a typo
introduced.
Diffstat (limited to 'src/backend/postmaster/bgworker.c')
-rw-r--r-- | src/backend/postmaster/bgworker.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/postmaster/bgworker.c b/src/backend/postmaster/bgworker.c index 97f9f28424a..fa52b6dfa83 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 \"max_worker_processes\"."))); return; } |