Merge pull request #777 from jrgm/payload-maxbytes
limit payload.maxBytes to 16384
This commit is contained in:
Коммит
22da18dba1
|
@ -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) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче