@nine-lab/nine-connector 0.1.18 → 0.1.20

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.20",
4
4
  "description": "NineQuery AI Connector for Database",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -19,6 +19,7 @@ class DatabaseManager {
19
19
  // DatabaseManager.js 내부
20
20
  async connect() {
21
21
  try {
22
+ console.log(this.config);
22
23
  // 이제 createPool이 async이므로 await를 붙입니다.
23
24
  this.pool = await PoolManager.createPool(this.config);
24
25