mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 14:54:05 +00:00
Fix: Use .destroy() instead of .end()
This commit is contained in:
parent
0197778af1
commit
e1f956879d
1 changed files with 1 additions and 1 deletions
|
@ -323,7 +323,7 @@ exports.mysqlQuery = function (connectionString, query) {
|
|||
reject(err);
|
||||
})
|
||||
.finally(() => {
|
||||
connection.end();
|
||||
connection.destroy();
|
||||
});
|
||||
});
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue