aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin Lebedev <lebedev_k@tochka.com>2021-10-20 17:58:06 +0500
committerKonstantin Lebedev <lebedev_k@tochka.com>2021-10-20 17:58:06 +0500
commit0b834600d5f8587990ce53c6c51b9508418bf44b (patch)
tree9d2c86786db797651d96a9de24c11ed83471f4a7
parentc78220a7f2aa804b4c718642e0ae0b6eaf6836e8 (diff)
downloadseaweedfs-0b834600d5f8587990ce53c6c51b9508418bf44b.tar.xz
seaweedfs-0b834600d5f8587990ce53c6c51b9508418bf44b.zip
fix PutObjectTaggingHandler Unmarshal
-rw-r--r--weed/s3api/tags.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/s3api/tags.go b/weed/s3api/tags.go
index 9ff7d1fba..5cb5f8e47 100644
--- a/weed/s3api/tags.go
+++ b/weed/s3api/tags.go
@@ -14,7 +14,7 @@ type TagSet struct {
}
type Tagging struct {
- XMLName xml.Name `xml:"http://s3.amazonaws.com/doc/2006-03-01/ Tagging"`
+ XMLName xml.Name `xml:"Tagging"`
TagSet TagSet `xml:"TagSet"`
}