Skip to content

Commit 5478765

Browse files
committed
Increase the request body payload size limit to 10MB (#271)
1 parent 70566f6 commit 5478765

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ mod validator;
5555
use option::CONFIG;
5656

5757
// Global configurations
58-
const MAX_EVENT_PAYLOAD_SIZE: usize = 1024000;
58+
const MAX_EVENT_PAYLOAD_SIZE: usize = 10240000;
5959
const API_BASE_PATH: &str = "/api";
6060
const API_VERSION: &str = "v1";
6161

0 commit comments

Comments
 (0)