File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -867,7 +867,7 @@ apw_start_database_worker(void)
867
867
ereport (ERROR ,
868
868
(errcode (ERRCODE_INSUFFICIENT_RESOURCES ),
869
869
errmsg ("registering dynamic bgworker autoprewarm failed" ),
870
- errhint ("Consider increasing configuration parameter \"max_worker_processes \"." )));
870
+ errhint ("Consider increasing the configuration parameter \"%s \"." , "max_worker_processes " )));
871
871
872
872
/*
873
873
* Ignore return value; if it fails, postmaster has died, but we have
Original file line number Diff line number Diff line change @@ -928,7 +928,7 @@ RegisterBackgroundWorker(BackgroundWorker *worker)
928
928
"Up to %d background workers can be registered with the current settings." ,
929
929
max_worker_processes ,
930
930
max_worker_processes ),
931
- errhint ("Consider increasing the configuration parameter \"max_worker_processes \"." )));
931
+ errhint ("Consider increasing the configuration parameter \"%s \"." , "max_worker_processes " )));
932
932
return ;
933
933
}
934
934
You can’t perform that action at this time.
0 commit comments