Skip to content

Commit 7ac9d30

Browse files
committed
bump input size limit to 128kB
1 parent dcaf8c2 commit 7ac9d30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/function_run_result.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ pub struct FunctionRunResult {
3333
}
3434

3535
const DEFAULT_INSTRUCTIONS_LIMIT: u64 = 11_000_000;
36-
const DEFAULT_INPUT_SIZE_LIMIT: u64 = 64_000;
36+
const DEFAULT_INPUT_SIZE_LIMIT: u64 = 128_000;
3737
const DEFAULT_OUTPUT_SIZE_LIMIT: u64 = 20_000;
3838

3939
pub fn get_json_size_as_bytes(value: &serde_json::Value) -> usize {

0 commit comments

Comments
 (0)