mirror of
https://github.com/ceph/ceph
synced 2025-02-19 17:08:05 +00:00
mgr/dashboard: return FQDN for default server_addr
Instead of returning '0.0.0.0' the dashboard returns the FQDN of the host, as it is the case for '::'. Fixes: https://tracker.ceph.com/issues/42664 Signed-off-by: Patrick Seidensal <pseidensal@suse.com>
This commit is contained in:
parent
ffcd974222
commit
a4e96b45ac
@ -179,7 +179,7 @@ class CherryPyConfig(object):
|
|||||||
|
|
||||||
uri = "{0}://{1}:{2}{3}/".format(
|
uri = "{0}://{1}:{2}{3}/".format(
|
||||||
'https' if ssl else 'http',
|
'https' if ssl else 'http',
|
||||||
socket.getfqdn() if server_addr == "::" else server_addr,
|
socket.getfqdn() if server_addr in ['::', '0.0.0.0'] else server_addr,
|
||||||
server_port,
|
server_port,
|
||||||
self.url_prefix
|
self.url_prefix
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user