From 0b449d427d1e9a58112b8a1ad0f2247b538158fd Mon Sep 17 00:00:00 2001 From: Tatsuo Ishii Date: Tue, 18 May 2021 14:09:17 +0900 Subject: [PATCH] Fix error message while checking watchdog configuration. Since Pgpool-II 4.2 there's no "other watchdog node" concept. All watchdog nodes are registered on all watchdog nodes. --- src/watchdog/watchdog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/watchdog/watchdog.c b/src/watchdog/watchdog.c index 4d88b567a..09d5bfd53 100644 --- a/src/watchdog/watchdog.c +++ b/src/watchdog/watchdog.c @@ -619,7 +619,7 @@ wd_check_config(void) { if (pool_config->wd_nodes.num_wd == 0) ereport(ERROR, - (errmsg("invalid watchdog configuration. other pgpools setting is not defined"))); + (errmsg("invalid watchdog configuration. no watchdog nodes configured"))); if (strlen(pool_config->wd_authkey) > MAX_PASSWORD_SIZE) ereport(ERROR, -- 2.39.5