contoller: Implement controlled healing and trigger (#2381)

This patch introduces new command line 'control' 

- minio control 

TO manage minio server connecting through GoRPC API frontend.

- minio control heal 

Is implemented for healing objects.
This commit is contained in:
Krishna Srinivas
2016-08-18 00:06:33 +05:30
committed by Harshavardhana
parent 0b7dfab17a
commit e2498edb45
16 changed files with 846 additions and 27 deletions

View File

@@ -257,3 +257,10 @@ type PartTooSmall struct {
func (e PartTooSmall) Error() string {
return fmt.Sprintf("Part size for %d should be atleast 5MB", e.PartNumber)
}
// NotImplemented If a feature is not implemented
type NotImplemented struct{}
func (e NotImplemented) Error() string {
return "Not Implemented"
}