mirror of
https://github.com/minio/minio.git
synced 2026-02-11 05:10:16 -05:00
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:
committed by
Harshavardhana
parent
0b7dfab17a
commit
e2498edb45
@@ -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"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user