(long resultCode)
| 174 | } |
| 175 | |
| 176 | private void errorsAdd(long resultCode) { |
| 177 | if (resultCode == 0) |
| 178 | return; |
| 179 | if (resultCode == Procedure.RaftApplied) |
| 180 | return; |
| 181 | errors.compute(resultCode, (__, n) -> n != null ? n + 1 : 1); |
| 182 | } |
| 183 | |
| 184 | private long errorsSum() { |
| 185 | long sum = 0; |
no test coverage detected