summaryrefslogtreecommitdiff
path: root/cache/src/tango_cache_xml.cpp
diff options
context:
space:
mode:
authorfengweihao <[email protected]>2021-03-22 14:10:43 +0800
committerfengweihao <[email protected]>2021-03-22 14:10:43 +0800
commit2b649f4510fdad386057ffd1d8ce2ef27b4dab36 (patch)
treefc32e724f5fa7308fb84ed4e2efed095ba8d3938 /cache/src/tango_cache_xml.cpp
parent62dde9ea6e638900e7616dd90e688dd270df7416 (diff)
TSG-5746 使用hos存储非结构化文件
修复缓存代码编译问题 缓存功能适配hos
Diffstat (limited to 'cache/src/tango_cache_xml.cpp')
-rw-r--r--cache/src/tango_cache_xml.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/cache/src/tango_cache_xml.cpp b/cache/src/tango_cache_xml.cpp
index 2b26b4e..0d21497 100644
--- a/cache/src/tango_cache_xml.cpp
+++ b/cache/src/tango_cache_xml.cpp
@@ -55,7 +55,8 @@ void construct_complete_xml(struct tango_cache_ctx *ctx, char **xml, int *len)
pdoc = xmlNewDoc((const xmlChar *)"1.0");
root = xmlNewNode(NULL, (const xmlChar *)"CompleteMultipartUpload");
- xmlNewProp(root, (const xmlChar *)"xmlns",(const xmlChar *)"http://s3.amazonaws.com/doc/2006-03-01/");
+ /*Big data deletion of this field parsing, shielding this field**/
+ //xmlNewProp(root, (const xmlChar *)"xmlns",(const xmlChar *)"http://s3.amazonaws.com/doc/2006-03-01/");
xmlDocSetRootElement(pdoc, root);
TAILQ_FOREACH(etag, &ctx->put.etag_head, node)