From c42c7c73ce6848313d18c160efe30118b2e85209 Mon Sep 17 00:00:00 2001 From: Andrey Sidorov Date: Wed, 5 Feb 2014 12:00:50 +1100 Subject: [PATCH] pass ssl option to config --- lib/ConnectionConfig.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/ConnectionConfig.js b/lib/ConnectionConfig.js index d0fb4f6e6..20dfaa241 100644 --- a/lib/ConnectionConfig.js +++ b/lib/ConnectionConfig.js @@ -27,6 +27,7 @@ function ConnectionConfig(options) { this.flags = options.flags || ''; this.queryFormat = options.queryFormat; this.pool = options.pool || undefined; + this.ssl = options.ssl || undefined; this.multipleStatements = options.multipleStatements || false; this.typeCast = (options.typeCast === undefined) ? true