Merge "Update get_mon_hosts to not specify mon ports"

This commit is contained in:
Zuul 2021-06-15 03:29:59 +00:00 committed by Gerrit Code Review
commit 3cc1cc1b11
1 changed files with 1 additions and 1 deletions

View File

@ -590,7 +590,7 @@ def get_mon_hosts():
relid))
if addr:
hosts.append('{}:6789'.format(format_ipv6_addr(addr) or addr))
hosts.append('{}'.format(format_ipv6_addr(addr) or addr))
return sorted(hosts)