mirror of https://github.com/grpc/grpc-node.git
Update maxBuffer limit to 100Mib
This commit is contained in:
parent
4ed3d5452c
commit
fe752be0c1
|
|
@ -32,7 +32,7 @@ var exe_ext = process.platform === 'win32' ? '.exe' : '';
|
|||
|
||||
var plugin = path.resolve(__dirname, 'grpc_node_plugin' + exe_ext);
|
||||
|
||||
var child_process = execFile(plugin, process.argv.slice(2), {encoding: 'buffer', maxBuffer: 1024 * 1000}, function(error, stdout, stderr) {
|
||||
var child_process = execFile(plugin, process.argv.slice(2), {encoding: 'buffer', maxBuffer: 1024 * 1024 * 100}, function(error, stdout, stderr) {
|
||||
if (error) {
|
||||
throw error;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue