Add initial version of heal, remove rebalance

This commit is contained in:
Harshavardhana
2015-07-14 22:40:04 -07:00
parent 6a64019659
commit 2553654e24
5 changed files with 90 additions and 82 deletions
+5
View File
@@ -68,3 +68,8 @@ func (donut API) DetachNode(hostname string) error {
delete(donut.nodes, hostname)
return nil
}
// Rebalance - rebalance an existing donut with new disks and nodes
func (donut API) Rebalance() error {
return iodine.New(APINotImplemented{API: "management.Rebalance"}, nil)
}