Skip to content

Commit

Permalink
Removed RebalanceClusterBuilder
Browse files Browse the repository at this point in the history
  • Loading branch information
rsumbaly committed Oct 12, 2010
1 parent 4e444b9 commit a1b19bd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 274 deletions.
21 changes: 0 additions & 21 deletions bin/voldemort-rebalance-configure.sh

This file was deleted.

6 changes: 3 additions & 3 deletions src/java/voldemort/client/protocol/admin/AdminClient.java
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -899,9 +899,9 @@ public String waitForCompletion(int nodeId, int requestId, long maxWait, TimeUni
while(System.currentTimeMillis() < waitUntil) { while(System.currentTimeMillis() < waitUntil) {
try { try {
AsyncOperationStatus status = getAsyncRequestStatus(nodeId, requestId); AsyncOperationStatus status = getAsyncRequestStatus(nodeId, requestId);
if(logger.isInfoEnabled()) if(logger.isDebugEnabled())
logger.info("Status from node " + nodeId + " (" + status.getDescription() logger.debug("Status from node " + nodeId + " (" + status.getDescription()
+ ") - " + status.getStatus()); + ") - " + status.getStatus());
description = status.getDescription(); description = status.getDescription();
if(status.hasException()) if(status.hasException())
throw status.getException(); throw status.getException();
Expand Down
250 changes: 0 additions & 250 deletions src/java/voldemort/client/rebalance/RebalanceClusterBuilder.java

This file was deleted.

0 comments on commit a1b19bd

Please sign in to comment.