From a0401050267f0a00c0799a2159f2c1d675551ccd Mon Sep 17 00:00:00 2001 From: Bhupesh Bansal Date: Thu, 7 Jan 2010 15:29:06 -0800 Subject: [PATCH] renamed rebalancingRoutedStore. --- config/single_node_cluster/config/cluster.xml | 26 ++++++++++++------- .../RebalancingProxyUnreachableException.java | 25 ------------------ 2 files changed, 17 insertions(+), 34 deletions(-) delete mode 100644 test/unit/voldemort/store/rebalancing/RebalancingProxyUnreachableException.java diff --git a/config/single_node_cluster/config/cluster.xml b/config/single_node_cluster/config/cluster.xml index 3b4d8bc4ed..703cae0787 100644 --- a/config/single_node_cluster/config/cluster.xml +++ b/config/single_node_cluster/config/cluster.xml @@ -1,10 +1,18 @@ - mycluster - - 0 - localhost - 8081 - 6666 - 0, 1 - - \ No newline at end of file + mycluster + + 0 + miner16.qa + 8089 + 6666 + 0, 1, 2, 3, 4, 5 + + + 1 + miner17.qa + 8089 + 6666 + 6,7,8,9,10 + + + diff --git a/test/unit/voldemort/store/rebalancing/RebalancingProxyUnreachableException.java b/test/unit/voldemort/store/rebalancing/RebalancingProxyUnreachableException.java deleted file mode 100644 index 2985cf7380..0000000000 --- a/test/unit/voldemort/store/rebalancing/RebalancingProxyUnreachableException.java +++ /dev/null @@ -1,25 +0,0 @@ -package voldemort.store.rebalancing; - -import voldemort.VoldemortApplicationException; - -public class RebalancingProxyUnreachableException extends VoldemortApplicationException { - - private static final long serialVersionUID = 1L; - - public RebalancingProxyUnreachableException(String s, Throwable t) { - super(s, t); - } - - public RebalancingProxyUnreachableException(String s) { - super(s); - } - - public RebalancingProxyUnreachableException(Throwable t) { - super(t); - } - - @Override - public short getId() { - return 15; - } -}