Skip to content

Commit

Permalink
fix: record too large error (#4376)
Browse files Browse the repository at this point in the history
  • Loading branch information
fraidev authored Feb 2, 2025
1 parent 2fca1c6 commit 8f6a1cf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/fluvio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fluvio"
version = "0.24.4"
version = "0.24.5"
edition = "2021"
license = "Apache-2.0"
authors = ["Fluvio Contributors <team@fluvio.io>"]
Expand Down
2 changes: 1 addition & 1 deletion crates/fluvio/src/producer/memory_batch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ impl MemoryBatch {
if actual_batch_size > self.write_limit {
self.is_full = true;
return Err(ProducerError::RecordTooLarge(
record_size,
actual_batch_size,
self.write_limit,
));
}

Expand Down

0 comments on commit 8f6a1cf

Please sign in to comment.