1
0
mirror of https://github.com/minio/mc.git synced 2025-07-28 20:01:58 +03:00

Remove/deprecate admin lock commands (#2503)

This commit is contained in:
Harshavardhana
2018-08-06 12:59:13 -07:00
committed by Dee Koder
parent 9998e077df
commit 26f5102eae
11 changed files with 25 additions and 590 deletions

View File

@ -116,10 +116,3 @@ var errSourceTargetSame = func(URL string) *probe.Error {
msg := "Source and target URL can not be same : " + URL
return probe.NewError(sourceTargetSameErr(errors.New(msg))).Untrace()
}
type bucketNotSpecifiedErr error
var errBucketNotSpecified = func() *probe.Error {
msg := "This operation requires a " + "bucket to be specified."
return probe.NewError(bucketNotSpecifiedErr(errors.New(msg))).Untrace()
}