From 7ffb5dd3c2d76299479d5b55041a021458e5f056 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Sat, 6 Sep 2025 00:08:38 +0900 Subject: [PATCH] Replace 0.0.0.0 in example url 0.0.0.0 is not a valid host name used in http requests. Change-Id: I956d7e2ff42714d81067caf84906d5da9aded556 Signed-off-by: Takashi Kajinami --- heat/common/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/heat/common/config.py b/heat/common/config.py index 0e62931976..901efeee83 100644 --- a/heat/common/config.py +++ b/heat/common/config.py @@ -410,13 +410,13 @@ heat_client_opts = [ cfg.URIOpt('url', schemes=['http', 'https'], help=_('Optional heat url in format like' - ' http://0.0.0.0:8004/v1/%(tenant_id)s.'))] + ' http://127.0.0.1:8004/v1/%(tenant_id)s.'))] keystone_client_opts = [ cfg.URIOpt('auth_uri', schemes=['http', 'https'], help=_('Unversioned keystone url in format like' - ' http://0.0.0.0:5000.'))] + ' http://127.0.0.1:5000.'))] client_http_log_debug_opts = [ cfg.BoolOpt('http_log_debug',