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 <kajinamit@oss.nttdata.com>
This commit is contained in:
Takashi Kajinami
2025-09-06 00:08:38 +09:00
parent d984d6d337
commit 7ffb5dd3c2

View File

@@ -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',