()
| 479 | } |
| 480 | |
| 481 | @Override |
| 482 | public @NotNull String toString() { |
| 483 | return "Raft{" + "raftCount=" + raftCount + ", selfId=" + selfId + ", leaderId=" + leaderId + ", votedFor=" |
| 484 | + votedFor + ", timeout=" + timeout + ", currentTerm=" + currentTerm + ", commitIndex=" + commitIndex |
| 485 | + ", nextIndexes=" + Arrays.toString(nextIndexes) + ", appendingTimeouts=" |
| 486 | + Arrays.toString(appendingTimeouts) + ", appendingLogMap=" + appendingLogMap + '}'; |
| 487 | } |
| 488 | } |
no outgoing calls
no test coverage detected