From f87142354f30826f54def96b607d6ef0955c2300 Mon Sep 17 00:00:00 2001 From: Bo Peng Date: Sat, 21 Jan 2023 23:54:35 +0900 Subject: [PATCH] Change the default value for wd_lifecheck_password to empty string as documented. --- src/config/pool_config_variables.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config/pool_config_variables.c b/src/config/pool_config_variables.c index 8896cbc91..39935f72c 100644 --- a/src/config/pool_config_variables.c +++ b/src/config/pool_config_variables.c @@ -4,7 +4,7 @@ * pgpool: a language independent connection pool server for PostgreSQL * written by Tatsuo Ishii * - * Copyright (c) 2003-2022 PgPool Global Development Group + * Copyright (c) 2003-2023 PgPool Global Development Group * * Permission to use, copy, modify, and distribute this software and * its documentation for any purpose and without fee is hereby @@ -1182,7 +1182,7 @@ static struct config_string ConfigureNamesString[] = CONFIG_VAR_TYPE_STRING, false, VAR_HIDDEN_VALUE }, &g_pool_config.wd_lifecheck_password, - "postgres", + "", NULL, NULL, NULL, NULL }, -- 2.39.5