-
Notifications
You must be signed in to change notification settings - Fork 64
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
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
Labels
bugSomething isn't workingSomething isn't working