1
0
Fork 0
mirror of synced 2024-06-28 11:00:55 +12:00

mysql key length

This commit is contained in:
Martin McKeaveney 2021-02-24 21:58:38 +00:00
parent 8d2e343ca0
commit 36ff7d80ac

View file

@ -55,7 +55,7 @@ const SCHEMA = {
class MySQLIntegration {
constructor(config) {
this.config = config
if (Object.keys(config.ssl) === 0) {
if (Object.keys(config.ssl).length === 0) {
delete config.ssl
}
this.client = mysql.createConnection(config)