From 4c05307da1df0197bd765717a0da896a30a01e89 Mon Sep 17 00:00:00 2001 From: Ian Barwick Date: Wed, 11 May 2022 14:57:34 +0900 Subject: [PATCH] repmgr: fix error message It's possible the missing node record might be for a witness server, though we have no way of knowing that. --- repmgrd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repmgrd.c b/repmgrd.c index 94be8d6a..23698594 100644 --- a/repmgrd.c +++ b/repmgrd.c @@ -479,7 +479,7 @@ main(int argc, char **argv) switch (config_file_options.replication_type) { case REPLICATION_TYPE_PHYSICAL: - log_hint(_("check that 'repmgr (primary|standby) register' was executed for this node")); + log_hint(_("check that 'repmgr (primary|standby|witness) register' was executed for this node")); break; }