badmfck-api-server 2.2.7 → 2.2.8

Sign up to get free protection for your applications and to get access to all the features.
@@ -83,7 +83,7 @@ async function Initializer(services) {
83
83
  exports.Initializer = Initializer;
84
84
  class APIService extends BaseService_1.BaseService {
85
85
  static nextLogID = 0;
86
- version = "2.2.7";
86
+ version = "2.2.8";
87
87
  options;
88
88
  monitor;
89
89
  monitorIndexFile;
@@ -586,6 +586,12 @@ class MysqlService extends BaseService_1.BaseService {
586
586
  });
587
587
  return;
588
588
  }
589
+ for (let i of this.transactions) {
590
+ if (i.conn === conn) {
591
+ (0, LogService_1.logInfo)("Your connection is in transaction");
592
+ break;
593
+ }
594
+ }
589
595
  this.sendQuery(conn, query, resolve, rollbackQuery);
590
596
  }
591
597
  catch (e) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "badmfck-api-server",
3
- "version": "2.2.7",
3
+ "version": "2.2.8",
4
4
  "description": "Simple API http server based on express",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",