Increase the default max payload size for the basePathProxy so it doesn't cause issues with the new _bulk api

This commit is contained in:
Matthew Bargar 2016-04-29 10:26:58 -04:00
parent bfba35f704
commit 6dc9cc9b34

View file

@ -33,6 +33,8 @@ export default class BasePathProxy {
this.basePath = `/${sample(alphabet, 3).join('')}`;
config.set('server.basePath', this.basePath);
}
config.set('server.maxPayloadBytes', 1024 * 1024 * 1024);
setupLogging(null, this.server, config);
setupConnection(null, this.server, config);