diff --git a/quickwit/Cargo.lock b/quickwit/Cargo.lock index 1b196cd9e47..046e3b63af5 100644 --- a/quickwit/Cargo.lock +++ b/quickwit/Cargo.lock @@ -3049,7 +3049,7 @@ dependencies = [ [[package]] name = "mrecordlog" version = "0.1.0" -source = "git+https://github.com/quickwit-oss/mrecordlog?rev=8b0e0cfacbbbfc9a544011b01380d689a6c7a3ae#8b0e0cfacbbbfc9a544011b01380d689a6c7a3ae" +source = "git+https://github.com/quickwit-oss/mrecordlog?rev=1c864ed9144f7dc8b8f4f7d3d080ea8a61667b27#1c864ed9144f7dc8b8f4f7d3d080ea8a61667b27" dependencies = [ "async-trait", "crc32fast", diff --git a/quickwit/Cargo.toml b/quickwit/Cargo.toml index a47aec959b0..20da7f11658 100644 --- a/quickwit/Cargo.toml +++ b/quickwit/Cargo.toml @@ -88,7 +88,7 @@ matches = "0.1.9" md5 = "0.7" mime_guess = "2.0.4" mockall = "0.11" -mrecordlog = { git = "https://github.com/quickwit-oss/mrecordlog", rev="8b0e0cfacbbbfc9a544011b01380d689a6c7a3ae" } +mrecordlog = { git = "https://github.com/quickwit-oss/mrecordlog", rev="1c864ed9144f7dc8b8f4f7d3d080ea8a61667b27" } new_string_template = "1.4.0" num_cpus = "1" nom = "7.1.3" diff --git a/quickwit/quickwit-ingest-api/src/queue.rs b/quickwit/quickwit-ingest-api/src/queue.rs index 98eb1d8bf4f..c4a640f6665 100644 --- a/quickwit/quickwit-ingest-api/src/queue.rs +++ b/quickwit/quickwit-ingest-api/src/queue.rs @@ -179,7 +179,7 @@ impl Queues { if first_key_opt.is_none() { first_key_opt = Some(pos); } - num_bytes += add_doc(record, &mut doc_batch); + num_bytes += add_doc(&record, &mut doc_batch); if num_bytes > size_limit { break; }