fix: redisPingAsync

pull/2541/head
long2ice 2 years ago
parent db757123ba
commit 21cd4d64c3

@ -358,14 +358,24 @@ exports.radius = function (
* Redis server ping * Redis server ping
* @param {string} dsn The redis connection string * @param {string} dsn The redis connection string
*/ */
exports.redisPingAsync = async function (dsn) { exports.redisPingAsync = function (dsn) {
const client = redis.createClient({ return new Promise((resolve, reject) => {
url: dsn, const client = redis.createClient({
url: dsn,
});
client.on("error", (err) => {
reject(err);
});
client.connect().then(() => {
client.ping().then((res, err) => {
if (err) {
reject(err);
} else {
resolve(res);
}
});
});
}); });
await client.connect();
const pong = await client.ping();
await client.disconnect();
return pong;
}; };
/** /**

Loading…
Cancel
Save