Skip to content

Commit 87ff74d

Browse files
authored
feat: increase default http body limit size (#7059)
1 parent 09b0bdf commit 87ff74d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/services/service-common/src/fastify.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export async function createServer(options: {
1818
}) {
1919
const server = fastify({
2020
disableRequestLogging: true,
21-
bodyLimit: options.bodyLimit ?? 15e6, // 15mb by default
21+
bodyLimit: options.bodyLimit ?? 30e6, // 30mb by default
2222
logger: {
2323
level: options.log.level,
2424
redact: ['request.options', 'options', 'request.headers.authorization'],

0 commit comments

Comments
 (0)