diff options
author | Bruce Momjian <bruce@momjian.us> | 2016-10-25 11:26:15 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2016-10-25 11:26:15 -0400 |
commit | 10c064ce4dad088ba2d8b978bff6009b9f22dc3a (patch) | |
tree | 9ed70b3db9a3631d103bcea041559e22cc75267c /src/backend/utils/misc/postgresql.conf.sample | |
parent | f5d6bce63ceb3c59a964814bb0df5a0648e750e5 (diff) | |
download | postgresql-10c064ce4dad088ba2d8b978bff6009b9f22dc3a.tar.gz postgresql-10c064ce4dad088ba2d8b978bff6009b9f22dc3a.zip |
Consistently mention 'SELECT pg_reload_conf()' in config files
Previously we only mentioned SIGHUP and 'pg_ctl reload' in
postgresql.conf and pg_hba.conf.
Diffstat (limited to 'src/backend/utils/misc/postgresql.conf.sample')
-rw-r--r-- | src/backend/utils/misc/postgresql.conf.sample | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample index 159ada3bc63..cf3400538a0 100644 --- a/src/backend/utils/misc/postgresql.conf.sample +++ b/src/backend/utils/misc/postgresql.conf.sample @@ -16,9 +16,9 @@ # # This file is read on server startup and when the server receives a SIGHUP # signal. If you edit the file on a running system, you have to SIGHUP the -# server for the changes to take effect, or use "pg_ctl reload". Some -# parameters, which are marked below, require a server shutdown and restart to -# take effect. +# server for the changes to take effect, run "pg_ctl reload", or execute +# "SELECT pg_reload_conf()". Some parameters, which are marked below, +# require a server shutdown and restart to take effect. # # Any parameter can also be given as a command-line option to the server, e.g., # "postgres -c log_connections=on". Some parameters can be changed at run time |