Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andygrove committed Dec 21, 2024
1 parent 652fdeb commit bb55eaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion native/core/src/execution/shuffle/shuffle_writer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1619,7 +1619,7 @@ pub fn write_ipc_compressed<W: Write + Seek>(

// fill ipc length
let end_pos = output.stream_position()?;
let compressed_length = end_pos - start_pos - 16;
let compressed_length = end_pos - start_pos - 8;

// fill ipc length
output.seek(SeekFrom::Start(start_pos))?;
Expand Down

0 comments on commit bb55eaa

Please sign in to comment.