This commit is contained in:
Barış Soner Uşaklı
2017-04-27 19:16:32 -04:00
parent af6cde5534
commit 13f5d29cb9

View File

@@ -31,13 +31,13 @@ infoController.get = function (req, res) {
}
return 0;
});
res.render('admin/development/info', {
info: data,
infoJSON: JSON.stringify(data, null, 4),
host: os.hostname(),
res.render('admin/development/info', {
info: data,
infoJSON: JSON.stringify(data, null, 4),
host: os.hostname(),
port: nconf.get('port'),
nodeCount: data.length,
timeout: timeoutMS
timeout: timeoutMS,
});
}, timeoutMS);
};