Merge pull request #777 from jrgm/payload-maxbytes

limit payload.maxBytes to 16384
This commit is contained in:
Andrew Chilton 2014-08-06 14:03:10 +12:00
Родитель c9c486c25a d38c1bd11b
Коммит 22da18dba1
2 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -75,6 +75,9 @@ module.exports = function (path, url, Hapi) {
maxAge: 15552000,
includeSubdomains: true
}
},
payload: {
maxBytes: 16384
}
}

Просмотреть файл

@ -155,7 +155,8 @@ TestServer.start(config)
'POST',
client.api.baseURL + '/get_random_bytes',
null,
{ big: Buffer(1024 * 512).toString('hex')}
// See payload.maxBytes in ../../server/server.js
{ big: Buffer(8192).toString('hex')}
)
.then(
function (body) {