kopia lustrzana https://github.com/c9/core
Merge pull request +7596 from c9/fix-debug
Fix stdout maxBuffer exceeded breaking debuggerpull/117/merge
commit
63d82b21f0
|
@ -1606,7 +1606,7 @@ module.exports = function setup(fsOptions) {
|
||||||
function fetchPid(callback, retries){
|
function fetchPid(callback, retries){
|
||||||
if (!retries) retries = 0;
|
if (!retries) retries = 0;
|
||||||
|
|
||||||
_execFile("ps", ["ax"],
|
_execFile("ps", ["ax"], { maxBuffer: 1000 * 1024 },
|
||||||
function(err, stdout){
|
function(err, stdout){
|
||||||
var matches = (stdout || "").split("\n").filter(function(line) {
|
var matches = (stdout || "").split("\n").filter(function(line) {
|
||||||
return line.indexOf(watchFile) > -1
|
return line.indexOf(watchFile) > -1
|
||||||
|
|
Ładowanie…
Reference in New Issue