Browse Source

mysql key length

pull/1188/head
Martin McKeaveney 5 years ago
parent
commit
36ff7d80ac
  1. 2
      packages/server/src/integrations/mysql.js

2
packages/server/src/integrations/mysql.js

@ -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)

Loading…
Cancel
Save