mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-28 22:45:26 +08:00
[skip ci](shards): fix issue #2116
Signed-off-by: SkyYang <mooncity.sky@163.com>
This commit is contained in:
parent
777c36a0ac
commit
c754182a6f
@ -29,7 +29,7 @@ class StaticDiscovery(object):
|
||||
|
||||
def __init__(self, config, readonly_topo, **kwargs):
|
||||
self.readonly_topo = readonly_topo
|
||||
hosts = env.list('DISCOVERY_STATIC_HOSTS', [])
|
||||
hosts = map(str.strip, env.list('DISCOVERY_STATIC_HOSTS', []))
|
||||
self.port = env.int('DISCOVERY_STATIC_PORT', 19530)
|
||||
self.hosts = [resolve_address(host, self.port) for host in hosts]
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user