rename completeMultipartMD5() into getCompleteMultipartMD5(). (#3051)

This commit is contained in:
Bala FA
2016-10-24 13:56:13 -07:00
committed by Harshavardhana
parent 7fc598b73f
commit 36639b65a9
6 changed files with 37 additions and 5 deletions

View File

@@ -141,7 +141,7 @@ func getUUID() (uuidStr string) {
}
// Create an s3 compatible MD5sum for complete multipart transaction.
func completeMultipartMD5(parts ...completePart) (string, error) {
func getCompleteMultipartMD5(parts ...completePart) (string, error) {
var finalMD5Bytes []byte
for _, part := range parts {
md5Bytes, err := hex.DecodeString(part.ETag)