Commit eed65f75 authored by zhihui wu's avatar zhihui wu

Modify the judgement condtion in elasticsearch_logging_discovery.go

The number of endpoints's addresses can be greater or equal to the value of "MINIMUM_MASTER_NODES". Signed-off-by: 's avatarzhihui wu <wu.zhihui1@zte.com.cn>
parent cf3a9309
...@@ -113,7 +113,7 @@ func main() { ...@@ -113,7 +113,7 @@ func main() {
} }
addrs = flattenSubsets(endpoints.Subsets) addrs = flattenSubsets(endpoints.Subsets)
glog.Infof("Found %s", addrs) glog.Infof("Found %s", addrs)
if len(addrs) > 0 && len(addrs) == count { if len(addrs) > 0 && len(addrs) >= count {
break break
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment