Skip to content

Commit

Permalink
Fix arg checking typo in RebalanceControllerCLI.
Browse files Browse the repository at this point in the history
  • Loading branch information
jayjwylie committed Jun 20, 2013
1 parent 2bf1543 commit d7f81d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/java/voldemort/tools/RebalanceControllerCLI.java
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ private static OptionSet getValidOptions(String[] args) {
System.exit(0);
}

Set<String> missing = CmdUtils.missing(options, "url", "target-cluster");
Set<String> missing = CmdUtils.missing(options, "url", "final-cluster");
if(missing.size() > 0) {
printUsageAndDie("Missing required arguments: " + Joiner.on(", ").join(missing));
}
Expand Down

0 comments on commit d7f81d7

Please sign in to comment.