apache / openwhisk-runtime-nodejs

Apache OpenWhisk Runtime NodeJS supports Apache OpenWhisk functions written in JavaScript for NodeJS
https://openwhisk.apache.org/
Apache License 2.0
60 stars 72 forks source link

base64 param length limit? #107

Closed Sumhua closed 4 years ago

Sumhua commented 5 years ago

Why nodejs has following limit when parse action runner,

app.use(bodyParser.json({ limit: "48mb" }));

while python and java8 runtime does not have such limit?

rabbah commented 5 years ago

iirc the default is a lot smaller otherwise and would prevent accepting large zip files.