(err error)
| 784 | } |
| 785 | |
| 786 | func readError(err error) error { |
| 787 | if err != nil && minio.ToErrorResponse(err).Code == minio.NoSuchKey { |
| 788 | return backend.ErrDoesNotExist |
| 789 | } |
| 790 | return err |
| 791 | } |
| 792 | |
| 793 | func parseKMSEncryptionContext(data string) (map[string]string, error) { |
| 794 | if data == "" { |
no outgoing calls