mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-26 19:36:29 +03:00
Added changes to stop auth attempts after an error
This commit is contained in:
parent
9d71e34a83
commit
f68452c47a
1 changed files with 14 additions and 11 deletions
|
@ -413,22 +413,25 @@ exports.radius = function (
|
||||||
exports.redisPingAsync = function (dsn) {
|
exports.redisPingAsync = function (dsn) {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
const client = redis.createClient({
|
const client = redis.createClient({
|
||||||
url: dsn,
|
url: dsn
|
||||||
});
|
});
|
||||||
client.on("error", (err) => {
|
client.on("error", (err) => {
|
||||||
|
client.disconnect();
|
||||||
reject(err);
|
reject(err);
|
||||||
});
|
});
|
||||||
client.connect().then(() => {
|
client.connect().then(() => {
|
||||||
client.ping().then((res, err) => {
|
if(client.isOpen){
|
||||||
if (client.isOpen) {
|
client.ping().then((res, err) => {
|
||||||
client.disconnect();
|
if (client.isOpen) {
|
||||||
}
|
client.disconnect();
|
||||||
if (err) {
|
}
|
||||||
reject(err);
|
if (err) {
|
||||||
} else {
|
reject(err);
|
||||||
resolve(res);
|
} else {
|
||||||
}
|
resolve(res);
|
||||||
});
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue