diff options
author | Michael Paquier <michael@paquier.xyz> | 2019-02-28 11:02:31 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2019-02-28 11:02:31 +0900 |
commit | adb1f93e73f2913bf6ff401b5c819fce85479503 (patch) | |
tree | 3b9fb50c2b2c0b16bff65e240619db843d1f08e2 /src/backend/utils/misc | |
parent | 904fce2a7695521d2cf25a3a08676f3c96d4096c (diff) |
Improve documentation of data_sync_retry
Reflecting an updated parameter value requires a server restart, which
was not mentioned in the documentation and in postgresql.conf.sample.
Reported-by: Thomas Poty
Discussion: https://postgr.es/m/15659-0cd812f13027a2d8@postgresql.org
Diffstat (limited to 'src/backend/utils/misc')
-rw-r--r-- | src/backend/utils/misc/postgresql.conf.sample | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample index 756dfb396a7..b8d7d857108 100644 --- a/src/backend/utils/misc/postgresql.conf.sample +++ b/src/backend/utils/misc/postgresql.conf.sample @@ -620,7 +620,9 @@ #exit_on_error = off # terminate session on any error? #restart_after_crash = on # reinitialize after backend crash? -#data_sync_retry = off # retry or panic on failure to fsync data? +#data_sync_retry = off # retry or panic on failure to fsync + # data? + # (change requires restart) #------------------------------------------------------------------------------ |