wsp-ms-core 1.1.28 → 1.1.29
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/dist/index.cjs +2 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -2185,7 +2185,9 @@ var _MysqlConnector = class _MysqlConnector {
|
|
|
2185
2185
|
return rows;
|
|
2186
2186
|
}
|
|
2187
2187
|
async getConnection() {
|
|
2188
|
+
console.log("[MysqlConnector] BEFORE pool.getConnection");
|
|
2188
2189
|
const conn = await this._pool.getConnection();
|
|
2190
|
+
console.log("[MysqlConnector] AFTER pool.getConnection");
|
|
2189
2191
|
return this.wrap(conn);
|
|
2190
2192
|
}
|
|
2191
2193
|
async closePool() {
|