Thanks to visit codestin.com
Credit goes to github.com

Skip to content

CompleteMultipartUpload Request body error #2

@lperlaki

Description

@lperlaki

I found a bug in the XML parsing for the complete-multipart-upload operation.

the root object should have the name CompleteMultipartUpload but is CompletedMultipartUpload

// src/ops/generated.rs:11490
impl<'xml> xml::Deserialize<'xml> for CompletedMultipartUpload {
    fn deserialize(d: &mut xml::Deserializer<'xml>) -> xml::DeResult<Self> {
-        d.named_element("CompletedMultipartUpload", |d| d.content())
+        d.named_element("CompleteMultipartUpload", |d| d.content())
    }
}

I am not that familiar with the code generator maybe you could give me some directions and I could make a pull request

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions