bump the buffer size

This commit is contained in:
Girish Ramakrishnan 2016-09-08 09:20:47 -07:00
parent 49b78bc3e2
commit c418fb907e
1 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ function exec(tag, file, args, options, callback) {
debug(tag + ' execFile: %s %s', file, args.join(' '));
options.maxBuffer = 1000 * 1024; // in bytes default is 200*1024
options.maxBuffer = 5000 * 1024; // in bytes default is 200*1024
var cp = child_process.spawn(file, args, options);
cp.stdout.on('data', function (data) {
@ -75,7 +75,7 @@ function system(tag, cmd, options, callback) {
debug(tag + ' system: %s %j', cmd, options);
options.maxBuffer = 1000 * 1024; // in bytes default is 200*1024
options.maxBuffer = 5000 * 1024; // in bytes default is 200*1024
var cp = child_process.exec(cmd, options, function (error, stdout, stderr) {
if (error) debug(tag + ' (error) ' + error);