@nine-lab/nine-connector 0.1.18 → 0.1.19

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.18",
3
+ "version": "0.1.19",
4
4
  "description": "NineQuery AI Connector for Database",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -66,7 +66,7 @@ class PoolManager {
66
66
  user: config.user,
67
67
  password: config.password,
68
68
  database: config.database,
69
- connectionLimit: 10,
69
+ connectionLimit: 100,
70
70
  connectTimeout: 10000,
71
71
  //ssl: config.ssl || undefined
72
72
  });
@@ -80,7 +80,7 @@ class PoolManager {
80
80
  user: config.user,
81
81
  password: config.password,
82
82
  database: config.database,
83
- max: 10,
83
+ max: 100,
84
84
  idleTimeoutMillis: 30000,
85
85
  //ssl: config.ssl || undefined
86
86
  });