Merge pull request #2907 from chakflying/fix/disconnect-redis
Fix: Disconnect redis after ping
This commit is contained in:
commit
a599f5149b
|
@ -408,6 +408,9 @@ exports.redisPingAsync = function (dsn) {
|
|||
});
|
||||
client.connect().then(() => {
|
||||
client.ping().then((res, err) => {
|
||||
if (client.isOpen) {
|
||||
client.disconnect();
|
||||
}
|
||||
if (err) {
|
||||
reject(err);
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue