Skip to content

Commit c7c0165

Browse files
committed
.
1 parent d295fb7 commit c7c0165

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

vortex-io/src/object_store.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,10 @@ impl VortexWrite for ObjectStoreWriter {
102102
async fn write_all<B: IoBuf>(&mut self, buffer: B) -> io::Result<B> {
103103
let slice = buffer.as_slice();
104104

105-
const CHUNKS_SIZE: usize = 25 * 1024 * 1204;
105+
const CHUNKS_SIZE: usize = 25 * 1024 * 1024;
106106

107-
for (chunk_idx, chunk) in slice.chunks(25 * 1024 * 1024).enumerate() {
108-
let payload = Bytes::copy_from_slice(&slice[chunk_idx * CHUNKS_SIZE..][..chunk.len()]);
107+
for chunk in slice.chunks(CHUNKS_SIZE) {
108+
let payload = Bytes::copy_from_slice(chunk);
109109
self.upload
110110
.as_mut()
111111
.put_part(PutPayload::from_bytes(payload))

0 commit comments

Comments
 (0)