mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-07-10 21:31:58 +02:00
feat: async/await
This commit is contained in:
@@ -1,16 +1,13 @@
|
||||
'use strict';
|
||||
|
||||
const async = require('async');
|
||||
const nconf = require('nconf');
|
||||
const db = require('../database');
|
||||
|
||||
module.exports.ping = function (req, res, next) {
|
||||
async.waterfall([
|
||||
function (next) {
|
||||
db.getObject('config', next);
|
||||
},
|
||||
function () {
|
||||
res.status(200).send(req.path === nconf.get('relative_path') + '/sping' ? 'healthy' : '200');
|
||||
},
|
||||
], next);
|
||||
module.exports.ping = async function (req, res, next) {
|
||||
try {
|
||||
await db.getObject('config');
|
||||
res.status(200).send(req.path === nconf.get('relative_path') + '/sping' ? 'healthy' : '200');
|
||||
} catch (err) {
|
||||
next(err);
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user