@nine-lab/nine-connector 0.1.15 → 0.1.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nine-lab/nine-connector",
3
- "version": "0.1.15",
3
+ "version": "0.1.17",
4
4
  "description": "NineQuery AI Connector for Database",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -68,7 +68,7 @@ class PoolManager {
68
68
  database: config.database,
69
69
  connectionLimit: 10,
70
70
  connectTimeout: 10000,
71
- ssl: config.ssl || undefined
71
+ //ssl: config.ssl || undefined
72
72
  });
73
73
  }
74
74
 
@@ -81,7 +81,8 @@ class PoolManager {
81
81
  password: config.password,
82
82
  database: config.database,
83
83
  max: 10,
84
- idleTimeoutMillis: 30000
84
+ idleTimeoutMillis: 30000,
85
+ //ssl: config.ssl || undefined
85
86
  });
86
87
  }
87
88
  }