mirror of
https://github.com/minio/minio.git
synced 2025-11-24 03:27:44 -05:00
Add crypto context errors (#8740)
Currently when connections to vault fail, client perpetually retries this leads to assumptions that the server has issues and masks the problem. Re-purpose *crypto.Error* type to send appropriate errors back to the client.
This commit is contained in:
committed by
kannappanr
parent
796cca4166
commit
933c60bc3a
@@ -165,7 +165,7 @@ func ParseConfig(reader io.Reader) (*Policy, error) {
|
||||
decoder := json.NewDecoder(reader)
|
||||
decoder.DisallowUnknownFields()
|
||||
if err := decoder.Decode(&iamp); err != nil {
|
||||
return nil, err
|
||||
return nil, Errorf("%w", err)
|
||||
}
|
||||
|
||||
return &iamp, iamp.Validate()
|
||||
|
||||
Reference in New Issue
Block a user