Skip to content

Commit

Permalink
fixed SBR logging error that blew up StandardOutLogger (#4909)
Browse files Browse the repository at this point in the history
This format error would cause the StandardOutLogger to throw a `FormatException` internally
  • Loading branch information
Aaronontheweb authored Apr 6, 2021
1 parent e7b3fb2 commit d3197dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Akka.Cluster/SBR/SplitBrainResolver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ string EarliestTimeOfDecision()
if (unreachableBefore == 0 && unreachableAfter > 0)
Log.Info(
"SBR found unreachable members, waiting for stable-after = {0} ms before taking downing decision. " +
"Now {1} unreachable members found. Downing decision will not be made before {3}.",
"Now {1} unreachable members found. Downing decision will not be made before {2}.",
StableAfter.TotalMilliseconds,
unreachableAfter,
EarliestTimeOfDecision());
Expand Down

0 comments on commit d3197dd

Please sign in to comment.