Skip to content

Commit bff3db2

Browse files
committed
Do not limit max bytes
1 parent 342f46d commit bff3db2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rust/log-service/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -709,7 +709,7 @@ impl LogService for LogServer {
709709
);
710710
let limits = Limits {
711711
max_files: Some(pull_logs.batch_size as u64 + 1),
712-
max_bytes: Some(pull_logs.batch_size as u64 * 100_000),
712+
max_bytes: None,
713713
};
714714
let fragments = match log_reader
715715
.scan(

0 commit comments

Comments
 (0)