parent
86cf2082a9
commit
37d45ad8b6
@ -353,7 +353,7 @@ public abstract class RpcClient implements Closeable {
|
||||
rpcClientStatus.set(RpcClientStatus.STARTING);
|
||||
|
||||
int startUpRetryTimes = rpcClientConfig.retryTimes();
|
||||
while (startUpRetryTimes > 0 && connectToServer == null) {
|
||||
while (startUpRetryTimes >= 0 && connectToServer == null) {
|
||||
try {
|
||||
startUpRetryTimes--;
|
||||
ServerInfo serverInfo = nextRpcServer();
|
||||
@ -636,7 +636,8 @@ public abstract class RpcClient implements Closeable {
|
||||
Response response;
|
||||
Throwable exceptionThrow = null;
|
||||
long start = System.currentTimeMillis();
|
||||
while (retryTimes < rpcClientConfig.retryTimes() && (timeoutMills <= 0 || System.currentTimeMillis() < timeoutMills + start)) {
|
||||
while (retryTimes <= rpcClientConfig.retryTimes() && (timeoutMills <= 0
|
||||
|| System.currentTimeMillis() < timeoutMills + start)) {
|
||||
boolean waitReconnect = false;
|
||||
try {
|
||||
if (this.currentConnection == null || !isRunning()) {
|
||||
@ -707,10 +708,9 @@ public abstract class RpcClient implements Closeable {
|
||||
*/
|
||||
public void asyncRequest(Request request, RequestCallBack callback) throws NacosException {
|
||||
int retryTimes = 0;
|
||||
|
||||
Throwable exceptionToThrow = null;
|
||||
long start = System.currentTimeMillis();
|
||||
while (retryTimes < rpcClientConfig.retryTimes()
|
||||
while (retryTimes <= rpcClientConfig.retryTimes()
|
||||
&& System.currentTimeMillis() < start + callback.getTimeout()) {
|
||||
boolean waitReconnect = false;
|
||||
try {
|
||||
@ -760,7 +760,7 @@ public abstract class RpcClient implements Closeable {
|
||||
int retryTimes = 0;
|
||||
long start = System.currentTimeMillis();
|
||||
Exception exceptionToThrow = null;
|
||||
while (retryTimes < rpcClientConfig.retryTimes()
|
||||
while (retryTimes <= rpcClientConfig.retryTimes()
|
||||
&& System.currentTimeMillis() < start + rpcClientConfig.timeOutMills()) {
|
||||
boolean waitReconnect = false;
|
||||
try {
|
||||
|
@ -319,17 +319,14 @@ public class RpcClientTest {
|
||||
((RpcClient.ServerInfo) resolveServerInfoMethod.invoke(rpcClient, "10.10.10.10::8848")).getAddress());
|
||||
assertEquals("10.10.10.10:8848",
|
||||
((RpcClient.ServerInfo) resolveServerInfoMethod.invoke(rpcClient, "10.10.10.10:8848")).getAddress());
|
||||
assertEquals("10.10.10.10:8848",
|
||||
((RpcClient.ServerInfo) resolveServerInfoMethod.invoke(rpcClient, "http://10.10.10.10:8848"))
|
||||
.getAddress());
|
||||
assertEquals("10.10.10.10:8848",
|
||||
((RpcClient.ServerInfo) resolveServerInfoMethod.invoke(rpcClient, "http://10.10.10.10::8848"))
|
||||
.getAddress());
|
||||
assertEquals("10.10.10.10:8848", ((RpcClient.ServerInfo) resolveServerInfoMethod.invoke(rpcClient,
|
||||
"http://10.10.10.10:8848")).getAddress());
|
||||
assertEquals("10.10.10.10:8848", ((RpcClient.ServerInfo) resolveServerInfoMethod.invoke(rpcClient,
|
||||
"http://10.10.10.10::8848")).getAddress());
|
||||
assertEquals("10.10.10.10:8848",
|
||||
((RpcClient.ServerInfo) resolveServerInfoMethod.invoke(rpcClient, "http://10.10.10.10")).getAddress());
|
||||
assertEquals("10.10.10.10:8848",
|
||||
((RpcClient.ServerInfo) resolveServerInfoMethod.invoke(rpcClient, "https://10.10.10.10::8848"))
|
||||
.getAddress());
|
||||
assertEquals("10.10.10.10:8848", ((RpcClient.ServerInfo) resolveServerInfoMethod.invoke(rpcClient,
|
||||
"https://10.10.10.10::8848")).getAddress());
|
||||
}
|
||||
|
||||
@Test
|
||||
@ -437,7 +434,7 @@ public class RpcClientTest {
|
||||
exception = e;
|
||||
}
|
||||
|
||||
verify(connection, times(3)).requestFuture(any());
|
||||
verify(connection, times(4)).requestFuture(any());
|
||||
verify(rpcClient).switchServerAsyncOnRequestFail();
|
||||
Assert.assertNotNull(exception);
|
||||
assertEquals(RpcClientStatus.UNHEALTHY, rpcClient.rpcClientStatus.get());
|
||||
|
Loading…
Reference in New Issue
Block a user