aboutsummaryrefslogtreecommitdiff
path: root/weed/storage/crc.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2018-09-09 16:25:43 -0700
committerChris Lu <chris.lu@gmail.com>2018-09-09 16:25:43 -0700
commit164091c269b1ff54c40329947cdf1dad37a527dc (patch)
tree71bac8b171a7b6909293219f3ae6b13fff91c561 /weed/storage/crc.go
parent9b3bf0e46c65ab8dfa980750cb1b805f08383df9 (diff)
downloadseaweedfs-164091c269b1ff54c40329947cdf1dad37a527dc.tar.xz
seaweedfs-164091c269b1ff54c40329947cdf1dad37a527dc.zip
add s3 multipart upload
Diffstat (limited to 'weed/storage/crc.go')
-rw-r--r--weed/storage/crc.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/storage/crc.go b/weed/storage/crc.go
index 494937784..e31e0f815 100644
--- a/weed/storage/crc.go
+++ b/weed/storage/crc.go
@@ -26,5 +26,5 @@ func (c CRC) Value() uint32 {
func (n *Needle) Etag() string {
bits := make([]byte, 4)
util.Uint32toBytes(bits, uint32(n.Checksum))
- return fmt.Sprintf("\"%x\"", bits)
+ return fmt.Sprintf("%x", bits)
}