sanpwc commented on a change in pull request #379:
URL: https://github.com/apache/ignite-3/pull/379#discussion_r723994226
##########
File path:
modules/raft/src/main/java/org/apache/ignite/raft/jraft/rpc/impl/RaftGroupServiceImpl.java
##########
@@ -487,7 +492,9 @@ else if (resp0.errorCode() == RaftError.EBUSY.getNumber() ||
return null;
}, retryDelay, TimeUnit.MILLISECONDS);
}
- else if (resp0.errorCode() == RaftError.EPERM.getNumber())
{
+ else if (resp0.errorCode() == RaftError.EPERM.getNumber()
||
+ resp0.errorCode() == RaftError.UNKNOWN.getNumber() ||
Review comment:
What are the reasons for an UNKNOWN and EINTERNAL erros? Why should we
retry requests in that cases?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]