MinIO is a high-performance, S3 compatible object store, open sourced under GNU AGPLv3 license. - minio/cmd/object-api-utils_test.go at 743ddb196ac071db1f6929c62765ad136112b11f · minio/minio
When trying to write an object to a bucket via s3, the following http error 400 is returned by minio: HTTP operation returned code: 400 request error : "Object name contains unsupported characters", URI: 1.1.1.1:9000/123abcd1234-123abcd1234//test/test_file1 Expected Behavior Handle double ...
= nil { t.Fatalf("Test failed to create HTTP request for copy object part: <ERROR> %v", err) } // "X-Amz-Copy-Source" header contains the information about the source bucket and the object to copied. req.Header.Set("X-Amz-Copy-Source", url.QueryEscape(pathJoin(bucketName...
MinIO is a high-performance, S3 compatible object store, open sourced under GNU AGPLv3 license. - minio/cmd/utils.go at 743ddb196ac071db1f6929c62765ad136112b11f · minio/minio
(k, v) } if opts.PartNumber > 0 && strings.Contains(ci.ETag, "-") { w.Header()[xhttp.AmzMpPartsCount] = []string{ strings.TrimLeftFunc(ci.ETag, func(r rune) bool { return !unicode.IsNumber(r) }), } } // For providing ranged content start, rangeLen, err := rs.GetOff...
MinIO is a high-performance, S3 compatible object store, open sourced under GNU AGPLv3 license. - minio/cmd/utils.go at 8ec888d13dcf7735a9845d403c437a1d230fa5d1 · minio/minio
globalGatewayName } else if globalIsErasureSD { mode = globalMinioModeErasureSD } return mode } func iamPolicyClaimNameOpenID() string { return globalOpenIDConfig.GetIAMPolicyClaimName() } func iamPolicyClaimNameSA() string { return "sa-policy" } // timedValue contains a synchronized value ...