@ -17,6 +17,9 @@ infoController.get = function(req, res, next) {
info = [];
pubsub.publish('sync:node:info:start');
setTimeout(function() {
info.sort(function(a, b) {
return (a.os.hostname < b.os.hostname) ? -1 : (a.os.hostname > b.os.hostname) ? 1 : 0;
});
res.render('admin/development/info', {info: info, infoJSON: JSON.stringify(info, null, 4), host: os.hostname(), port: nconf.get('port')});
}, 200);
};