mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-12-18 12:14:41 -05:00
Merge pull request #3222 from chakflying/fix/mysql-aborted-connection
Fix: Try to close mysql connection properly
This commit is contained in:
commit
37031fb9a7
@ -342,7 +342,12 @@ exports.mysqlQuery = function (connectionString, query) {
|
|||||||
resolve("No Error, but the result is not an array. Type: " + typeof res);
|
resolve("No Error, but the result is not an array. Type: " + typeof res);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
connection.destroy();
|
|
||||||
|
try {
|
||||||
|
connection.end();
|
||||||
|
} catch (_) {
|
||||||
|
connection.destroy();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user