mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-09-23 04:53:32 +08:00
[s3] Fixed s3 replication by sending content-md as base64 (#5596)
This commit is contained in:
@@ -11,6 +11,7 @@ import (
|
|||||||
"github.com/seaweedfs/seaweedfs/weed/s3api/s3_constants"
|
"github.com/seaweedfs/seaweedfs/weed/s3api/s3_constants"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
"encoding/base64"
|
||||||
|
|
||||||
"github.com/seaweedfs/seaweedfs/weed/filer"
|
"github.com/seaweedfs/seaweedfs/weed/filer"
|
||||||
"github.com/seaweedfs/seaweedfs/weed/glog"
|
"github.com/seaweedfs/seaweedfs/weed/glog"
|
||||||
@@ -202,7 +203,7 @@ func (s3sink *S3Sink) CreateEntry(key string, entry *filer_pb.Entry, signatures
|
|||||||
Tagging: aws.String(tags),
|
Tagging: aws.String(tags),
|
||||||
}
|
}
|
||||||
if len(entry.Attributes.Md5) > 0 {
|
if len(entry.Attributes.Md5) > 0 {
|
||||||
uploadInput.ContentMD5 = aws.String(fmt.Sprintf("%x", entry.Attributes.Md5))
|
uploadInput.ContentMD5 = aws.String(base64.StdEncoding.EncodeToString([]byte(entry.Attributes.Md5)))
|
||||||
}
|
}
|
||||||
_, err = uploader.Upload(&uploadInput)
|
_, err = uploader.Upload(&uploadInput)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user