- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for newErrFn (0.06 sec)
-
internal/config/errors.go
"Unable to use specified port", "Please ensure MinIO binary has 'cap_net_bind_service=+ep' permissions", `Use 'sudo setcap cap_net_bind_service=+ep /path/to/minio' to provide sufficient permissions`, ) ErrTLSReadError = newErrFn( "Cannot read the TLS certificate", "Please check if the certificate has the proper owner and read permissions", "", ) ErrTLSUnexpectedData = newErrFn(
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Jul 10 16:57:01 UTC 2024 - 9.3K bytes - Viewed (0) -
internal/config/errors-utils.go
} // ErrFn function wrapper type ErrFn func(err error) Err // Create a UI error generator, this is needed to simplify // the update of the detailed error message in several places // in MinIO code func newErrFn(msg, action, hint string) ErrFn { return func(err error) Err { u := Err{ msg: msg, action: action, hint: hint, } if err != nil { u.detail = err.Error() } return u }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Aug 14 17:11:51 UTC 2024 - 3.8K bytes - Viewed (0)