We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Stems from line 44 in the connection-parameters.js. I corrected it as follows:
OLD: config.ssl || useSsl(); -this is a problem if you send in false. CORRECTED: this.ssl = typeof config.ssl === 'undefined' ? useSsl() : config.ssl;