Skip to content

Commit

Permalink
Fix field
Browse files Browse the repository at this point in the history
Signed-off-by: HenrikJannsen <[email protected]>
  • Loading branch information
HenrikJannsen committed Jun 10, 2024
1 parent 0752e07 commit 37bba68
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ private String getConnectionInfo(PeerConncetionInfo info) {
failureRateString = asWarn(failureRateString, failureRateString);
}
sb.append("FailureRate (success/failures): ").append(failureRateString)
.append("(").append(info.getNumFailures()).append(" / ")
.append("(").append(info.getNumSuccess()).append(" / ")
.append(info.getNumFailures()).append(")").append("<br/>");
info.getLastExceptionMessage().ifPresent(errorMessage ->
sb.append(asError("LastExceptionMessage: " + errorMessage, info.getAllExceptionMessages()))
Expand Down

0 comments on commit 37bba68

Please sign in to comment.