diff options
Diffstat (limited to 'lib/policy.js')
-rw-r--r-- | lib/policy.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/policy.js b/lib/policy.js index 4a3248d..1aefc8a 100644 --- a/lib/policy.js +++ b/lib/policy.js @@ -349,7 +349,7 @@ const app = require('express')(); app.set('x-powered-by', false); app.set('etag', false); app.use(require('./middleware').checkType('application/json')); -app.use(require('body-parser').json({strict: true})); +app.use(require('body-parser').json({strict: true, limit: '150mb'})); app.use(function(req, res, next) { logger.info(req.dcaeReqId, "new req: " + req.method + " " + req.originalUrl + |