-
Notifications
You must be signed in to change notification settings - Fork 26.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can not stop retry with retries=0
#1463
Comments
看源码好像只有cluster为failover这个参数才有用 |
if you use failfast cluster, retries does't work. refer from : com.alibaba.dubbo.rpc.cluster.support.FailoverClusterInvoker#doInvoke int len = getUrl().getMethodParameter(invocation.getMethodName(), Constants.RETRIES_KEY, Constants.DEFAULT_RETRIES) + 1;
if (len <= 0) {
len = 1;
} |
Hi, Please consider using English, Dubbo is a global community, and all the issues may be viewed and discussed by people all over the world. Please send mail to [email protected] to discuss questions like this. We'd like github issues to track bugs, features or at least high suspicious bugs. We guarantee that the questions send to the mailing list can get a quicker reply. How to send and subscrite to [email protected]: #1393 Thanks |
我这样配置了之后,为什么还会有失败重试?
The text was updated successfully, but these errors were encountered: