Skip to content

Commit 1bae9ba

Browse files
detached changes removed
1 parent 70267fe commit 1bae9ba

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

lib/tunnel.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -314,9 +314,7 @@ function runBinary_(self, retries, fnCallback) {
314314
);
315315
}
316316
// Run Binary with argumants in spawn process.
317-
self.proc = childProcess.spawn(self.binaryPath, binaryArguments, {
318-
detached: true
319-
});
317+
self.proc = childProcess.spawn(self.binaryPath, binaryArguments);
320318
var isCallback = false;
321319
self.proc.stdout.pipe(split()).on('data', function(data) {
322320
if (!isCallback) {

0 commit comments

Comments
 (0)