Remove auto-unref

cc: @AvianFlu @AndreasMadsen
pull/24503/head
isaacs 2012-06-11 09:07:42 -07:00
parent e9aa57e8bd
commit 1358632e67
1 changed files with 0 additions and 4 deletions

View File

@ -609,10 +609,6 @@ var spawn = exports.spawn = function(file, args, options) {
gid: options ? options.gid : null
});
if (options && options.detached) {
child.unref();
}
return child;
};