We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
设置为0或者注释掉还是有4次重试
The text was updated successfully, but these errors were encountered:
问题找到了,框架这两个变量的get方法判断≤0就取默认值,这里改成<0就可以了
public int getRetryDelayMillis() { if (retryDelayMillis <= 0) { retryDelayMillis = ViseConfig.DEFAULT_RETRY_DELAY_MILLIS; } return retryDelayMillis; } public int getRetryCount() { if (retryCount <= 0) { retryCount = ViseConfig.DEFAULT_RETRY_COUNT; } return retryCount; }
Sorry, something went wrong.
修复“超时重试设置无效 #28”错误
e8d3777
No branches or pull requests
设置为0或者注释掉还是有4次重试
The text was updated successfully, but these errors were encountered: