Skip to content

Commit 2b5fbf8

Browse files
authored
Lower get_file_contents blob size limit.
1 parent 69b23c3 commit 2b5fbf8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/rrg/src/action/get_file_contents.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use std::path::PathBuf;
66

77
/// Limit on the size of individual file part blob sent to the blob sink.
8-
const MAX_BLOB_LEN: usize = 2 * 1024 * 1024; // 2 MiB.
8+
const MAX_BLOB_LEN: usize = 1 * 1024 * 1024; // 1 MiB.
99

1010
/// Arguments of the `get_file_contents` action.
1111
pub struct Args {

0 commit comments

Comments
 (0)