mirror of
https://github.com/linuxserver/core.git
synced 2026-02-20 05:07:19 +08:00
Merge pull request +7596 from c9/fix-debug
Fix stdout maxBuffer exceeded breaking debugger
This commit is contained in:
commit
63d82b21f0
4
node_modules/vfs-local/localfs.js
generated
vendored
4
node_modules/vfs-local/localfs.js
generated
vendored
@ -1606,8 +1606,8 @@ module.exports = function setup(fsOptions) {
|
||||
function fetchPid(callback, retries){
|
||||
if (!retries) retries = 0;
|
||||
|
||||
_execFile("ps", ["ax"],
|
||||
function(err, stdout){
|
||||
_execFile("ps", ["ax"], { maxBuffer: 1000 * 1024 },
|
||||
function(err, stdout){
|
||||
var matches = (stdout || "").split("\n").filter(function(line) {
|
||||
return line.indexOf(watchFile) > -1
|
||||
&& !/\-L cloud9[\d\.]+ new/.test(line)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user