mirror of
https://github.com/minio/minio.git
synced 2025-04-06 04:40:38 -04:00
minio: Simplify for gosimple
tool complaints.
This commit is contained in:
parent
ba3a5805c1
commit
6037fe66e9
@ -44,10 +44,10 @@ const (
|
|||||||
)
|
)
|
||||||
|
|
||||||
// isValidSecretKey - validate secret key.
|
// isValidSecretKey - validate secret key.
|
||||||
var isValidSecretKey = regexp.MustCompile("^.{8,40}$")
|
var isValidSecretKey = regexp.MustCompile(`^.{8,40}$`)
|
||||||
|
|
||||||
// isValidAccessKey - validate access key.
|
// isValidAccessKey - validate access key.
|
||||||
var isValidAccessKey = regexp.MustCompile("^[a-zA-Z0-9\\-\\.\\_\\~]{5,20}$")
|
var isValidAccessKey = regexp.MustCompile(`^[a-zA-Z0-9\\-\\.\\_\\~]{5,20}$`)
|
||||||
|
|
||||||
// mustGenAccessKeys - must generate access credentials.
|
// mustGenAccessKeys - must generate access credentials.
|
||||||
func mustGenAccessKeys() (creds credential) {
|
func mustGenAccessKeys() (creds credential) {
|
||||||
|
@ -56,7 +56,7 @@ func setGlobals(quiet, debug bool) {
|
|||||||
globalQuiet = quiet
|
globalQuiet = quiet
|
||||||
globalDebug = debug
|
globalDebug = debug
|
||||||
// Enable debug messages if requested.
|
// Enable debug messages if requested.
|
||||||
if globalDebug == true {
|
if globalDebug {
|
||||||
console.DebugPrint = true
|
console.DebugPrint = true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -37,7 +37,7 @@ func getFSType(path string) (string, error) {
|
|||||||
}
|
}
|
||||||
fsTypeHex := strconv.FormatUint(uint64(s.Type), 16)
|
fsTypeHex := strconv.FormatUint(uint64(s.Type), 16)
|
||||||
fsTypeString, ok := fsType2StringMap[fsTypeHex]
|
fsTypeString, ok := fsType2StringMap[fsTypeHex]
|
||||||
if ok == false {
|
if !ok {
|
||||||
return "UNKNOWN", nil
|
return "UNKNOWN", nil
|
||||||
}
|
}
|
||||||
return fsTypeString, nil
|
return fsTypeString, nil
|
||||||
|
5
utils.go
5
utils.go
@ -40,10 +40,7 @@ const (
|
|||||||
|
|
||||||
// isMaxObjectSize - verify if max object size
|
// isMaxObjectSize - verify if max object size
|
||||||
func isMaxObjectSize(size int64) bool {
|
func isMaxObjectSize(size int64) bool {
|
||||||
if size > maxObjectSize {
|
return size > maxObjectSize
|
||||||
return true
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func contains(stringList []string, element string) bool {
|
func contains(stringList []string, element string) bool {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user