Skip to content

Commit

Permalink
Fix unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
abh1nay committed May 17, 2013
1 parent 995b30a commit fbe2589
Showing 1 changed file with 2 additions and 4 deletions.
Expand Up @@ -60,8 +60,6 @@
*/
public class RebalanceRebootstrapConsistencyTest {

private final static String STORE_NAME = "test";

private Cluster cluster;
private List<VoldemortServer> servers;

Expand Down Expand Up @@ -215,7 +213,7 @@ public void rebalance() {
replicaToPartitionList.put(0, ImmutableList.of(0, 1));
int req = adminClient.storeMntOps.migratePartitions(0,
1,
STORE_NAME,
testStoreNameRW,
replicaToPartitionList,
null,
null,
Expand All @@ -237,7 +235,7 @@ public void rebalance() {
node1.getSocketPort(),
node1.getAdminPort(),
ImmutableList.of(0, 1));
adminClient.storeMntOps.deletePartitions(0, STORE_NAME, ImmutableList.of(0, 1), null);
adminClient.storeMntOps.deletePartitions(0, testStoreNameRW, ImmutableList.of(0, 1), null);

newCluster = new Cluster(cluster.getName(),
ImmutableList.of(newNode0, newNode1),
Expand Down

0 comments on commit fbe2589

Please sign in to comment.