jkosh44 commented on PR #7301: URL: https://github.com/apache/arrow-rs/pull/7301#issuecomment-2740951555
@tustvold it looks like you actually added the empty upload handling, https://github.com/apache/arrow-rs/pull/5590/files. Any thoughts on why the PUT is needed? From some local testing, the following also seems to work (i.e. remove the PUT): ```Rust if completed_parts.is_empty() { // GCS doesn't allow empty multipart uploads self.multipart_cleanup(path, multipart_id).await?; return Ok(PutResult{ e_tag: None, version: None }); } ``` but I'm not really familiar enough with this API to know if that break's something. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
