mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-30 18:24:03 +00:00
Fix: Disconnect redis after ping
This commit is contained in:
parent
94c3861608
commit
230de63460
1 changed files with 3 additions and 0 deletions
|
@ -405,6 +405,9 @@ exports.redisPingAsync = function (dsn) {
|
||||||
});
|
});
|
||||||
client.connect().then(() => {
|
client.connect().then(() => {
|
||||||
client.ping().then((res, err) => {
|
client.ping().then((res, err) => {
|
||||||
|
if (client.isOpen) {
|
||||||
|
client.disconnect();
|
||||||
|
}
|
||||||
if (err) {
|
if (err) {
|
||||||
reject(err);
|
reject(err);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue