This is an automated email from the ASF dual-hosted git repository.
jayzhan211 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-rs-object-store.git
The following commit(s) were added to refs/heads/main by this push:
new e0fbe49 fix(core): add missing extension assignment (#689)
e0fbe49 is described below
commit e0fbe4966d6f0ee5e1ff6d4c9a4f71fdc98c22f8
Author: dentiny <[email protected]>
AuthorDate: Wed May 6 05:44:45 2026 -0700
fix(core): add missing extension assignment (#689)
* fix(core): add missing extension assignment
* clippy
---
src/buffered.rs | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/buffered.rs b/src/buffered.rs
index 5a95343..54f46df 100644
--- a/src/buffered.rs
+++ b/src/buffered.rs
@@ -446,6 +446,7 @@ impl AsyncWrite for BufWriter {
let opts = PutOptions {
attributes: self.attributes.take().unwrap_or_default(),
tags: self.tags.take().unwrap_or_default(),
+ extensions: self.extensions.take().unwrap_or_default(),
..Default::default()
};
let store = Arc::clone(&self.store);