correctly close connections #920

This commit is contained in:
SPRINX0\prochazka
2024-10-14 14:28:26 +02:00
parent f80ae284fa
commit f0048bc6cf
4 changed files with 11 additions and 3 deletions

View File

@@ -371,6 +371,10 @@ const driver = {
}
return null;
},
async close(dbhan) {
return dbhan.client.quit();
},
};
module.exports = driver;