fix reverseActions

This commit is contained in:
jshkurti 2015-05-04 16:27:49 +02:00
parent 6da65595f1
commit 59fd335a03

View File

@ -188,8 +188,9 @@ var ReverseInteract = module.exports = {
return cb(new Error('method %s not allowed'));
}
pm2.remote(method_name, parameters, cb);
pm2.connect(function() {
pm2.remote(method_name, parameters, cb);
});
return false;
};