We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e75a448 commit 3b956cbCopy full SHA for 3b956cb
src/Routers/FunctionsRouter.js
@@ -207,7 +207,7 @@ export class FunctionsRouter extends PromiseRouter {
207
let settled = false;
208
let busboy;
209
try {
210
- busboy = Busboy({ headers: req.headers });
+ busboy = Busboy({ headers: req.headers, limits: { fieldSize: maxBytes } });
211
} catch (err) {
212
return reject(
213
new Parse.Error(Parse.Error.INVALID_JSON, `Invalid multipart request: ${err.message}`)
0 commit comments