Skip to content
This repository was archived by the owner on Mar 20, 2023. It is now read-only.

Commit d238c74

Browse files
committed
feat: bump the upload size limit to 50MiB
Signed-off-by: Nathaniel McCallum <nathaniel@profian.com>
1 parent b8eea4a commit d238c74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ use tracing_subscriber::{layer::SubscriberExt, util::SubscriberInitExt};
4444
use uuid::Uuid;
4545

4646
const READ_TIMEOUT: Duration = Duration::from_secs(5);
47-
const WASM_MAX: usize = 25 * 1024 * 1024; // 25 MiB
47+
const WASM_MAX: usize = 50 * 1024 * 1024; // 50 MiB
4848
const TOML_MAX: usize = 256 * 1024; // 256 KiB
4949

5050
#[allow(dead_code)]

0 commit comments

Comments
 (0)