From 6ebf3a73197685f96a5318344633a2d967b45389 Mon Sep 17 00:00:00 2001 From: Ian Barwick Date: Mon, 14 Sep 2015 14:32:34 +0900 Subject: [PATCH] Make example output host match input configuration --- QUICKSTART.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/QUICKSTART.md b/QUICKSTART.md index 72c222ff..2dd3e492 100644 --- a/QUICKSTART.md +++ b/QUICKSTART.md @@ -111,8 +111,8 @@ This concludes the basic `repmgr` setup of master and standby. The records created in the `repl_nodes` table should look something like this: repmgr_db=# SELECT * from repmgr_test.repl_nodes; - id | type | upstream_node_id | cluster | name | conninfo | slot_name | priority | active - ----+---------+------------------+---------+-------+-------------------------------------------------+-----------+----------+-------- - 1 | primary | | test | node1 | host=localhost user=repmgr_usr dbname=repmgr_db | | 0 | t - 2 | standby | 1 | test | node2 | host=localhost user=repmgr_usr dbname=repmgr_db | | 0 | t + id | type | upstream_node_id | cluster | name | conninfo | slot_name | priority | active + ----+---------+------------------+---------+-------+----------------------------------------------------+-----------+----------+-------- + 1 | primary | | test | node1 | host=repmgr_node1 user=repmgr_usr dbname=repmgr_db | | 0 | t + 2 | standby | 1 | test | node2 | host=repmgr_node2 user=repmgr_usr dbname=repmgr_db | | 0 | t (2 rows)