Skip to content

Commit

Permalink
[fix][admin] Fix typo in validation message (#16021)
Browse files Browse the repository at this point in the history
(cherry picked from commit 8d8a19f)
  • Loading branch information
visortelle authored and mattisonchao committed Jun 13, 2022
1 parent 6e7bd70 commit a767d37
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -806,7 +806,7 @@ protected void validatePersistencePolicies(PersistencePolicies persistence) {
checkArgument(
(persistence.getBookkeeperEnsemble() >= persistence.getBookkeeperWriteQuorum())
&& (persistence.getBookkeeperWriteQuorum() >= persistence.getBookkeeperAckQuorum()),
String.format("Bookkeeper Ensemble (%s) >= WriteQuorum (%s) >= AckQuoru (%s)",
String.format("Bookkeeper Ensemble (%s) >= WriteQuorum (%s) >= AckQuorum (%s)",
persistence.getBookkeeperEnsemble(), persistence.getBookkeeperWriteQuorum(),
persistence.getBookkeeperAckQuorum()));

Expand Down

0 comments on commit a767d37

Please sign in to comment.