diff options
author | Michael Paquier <michael@paquier.xyz> | 2023-12-04 08:10:32 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2023-12-04 08:10:32 +0900 |
commit | fcf46f8fb76ca8086119b3f1510533332aefd604 (patch) | |
tree | 3dba32ea006ba38a80dd9871ff9d63e277916cc9 | |
parent | 5d40b3c4f6cae974160cde49932eb1e0c2d04213 (diff) |
doc: Remove reference to trigger file regarding promotion
The wording changed here comes from 991bfe11d28a, when the only way to
trigger a promotion was with a trigger file. There are more options to
achieve this operation these days, like the SQL function pg_promote() or
the command `pg_ctl promote`, so it is confusing to assume that only a
trigger file is able to do the work.
Note also that promote_trigger_file has been removed as of cd4329d9393f
in 16~.
Author: Shinya Kato
Discussion: https://postgr.es/m/201b08ea29aa61f96162080e75be503c@oss.nttdata.com
Backpatch-through: 12
-rw-r--r-- | doc/src/sgml/high-availability.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/high-availability.sgml b/doc/src/sgml/high-availability.sgml index 72b50bae79f..7c8e9943ac2 100644 --- a/doc/src/sgml/high-availability.sgml +++ b/doc/src/sgml/high-availability.sgml @@ -646,7 +646,7 @@ protocol to make nodes agree on a serializable transactional order. later disconnected, the standby goes back to step 1 and tries to restore the file from the archive again. This loop of retries from the archive, <filename>pg_wal</filename>, and via streaming replication goes on until the server - is stopped or failover is triggered by a trigger file. + is stopped or is promoted. </para> <para> |