mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
find_mongo_pids: Fix regression in 203a82d.
Don't consider "ps" stderr to be an error. This occurs on OSX Mountain Lion if DYLD_LIBRARY_PATH or a similar env var is set, and is harmless.
This commit is contained in:
@@ -19,8 +19,6 @@ var find_mongo_pids = function (app_dir, port, callback) {
|
||||
function (error, stdout, stderr) {
|
||||
if (error) {
|
||||
callback({reason: error});
|
||||
} else if (stderr) {
|
||||
callback({reason: 'ps produced stderr ' + stderr});
|
||||
} else {
|
||||
var pids = [];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user