Merge pull request #4663 from horizonzy/fix-4662

[ISSUE-#4662] Just choose one between nacosDomain mode and servers mode.
This commit is contained in:
赵延 2021-01-11 09:37:12 +08:00 committed by GitHub
commit 0732a93072
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -514,7 +514,7 @@ public class NamingProxy implements Closeable {
params.put(CommonParams.NAMESPACE_ID, getNamespaceId());
if (CollectionUtils.isEmpty(servers) && StringUtils.isEmpty(nacosDomain)) {
if (CollectionUtils.isEmpty(servers) && StringUtils.isBlank(nacosDomain)) {
throw new NacosException(NacosException.INVALID_PARAM, "no server available");
}
@ -531,10 +531,7 @@ public class NamingProxy implements Closeable {
}
}
}
}
if (servers != null && !servers.isEmpty()) {
} else {
Random random = new Random(System.currentTimeMillis());
int index = random.nextInt(servers.size());