- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for SignatureDoesNotMatch (0.08 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
cmd/object-api-errors.go
var versionNotFound VersionNotFound return errors.As(err, &versionNotFound) } // isErrSignatureDoesNotMatch - Check if error type is SignatureDoesNotMatch. func isErrSignatureDoesNotMatch(err error) bool { var signatureDoesNotMatch SignatureDoesNotMatch return errors.As(err, &signatureDoesNotMatch) } // PreConditionFailed - Check if copy precondition failed type PreConditionFailed struct{}
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 09 02:05:14 GMT 2024 - 22.1K bytes - Click Count (0) -
cmd/api-errors.go
Description: "The difference between the request time and the server's time is too large.", HTTPStatusCode: http.StatusForbidden, }, ErrSignatureDoesNotMatch: { Code: "SignatureDoesNotMatch", Description: "The request signature we calculated does not match the signature you provided. Check your key and signing method.", HTTPStatusCode: http.StatusForbidden, }, ErrMethodNotAllowed: {
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Wed Apr 16 07:34:24 GMT 2025 - 93K bytes - Click Count (3) -
cmd/server_test.go
// expecting a failure during upload. response, err = s.client.Do(request) c.Assert(err, nil) // Since Content-Md5 header was wrong, expecting to fail with "SignatureDoesNotMatch" error. verifyError(c, response, "SignatureDoesNotMatch", "The request signature we calculated does not match the signature you provided. Check your key and signing method.", http.StatusForbidden) }
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 118.1K bytes - Click Count (0)