@abtnode/core 1.16.8-next-1401044b → 1.16.8-next-5e42c978

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.
Files changed (2) hide show
  1. package/lib/team/manager.js +6 -1
  2. package/package.json +17 -17
@@ -423,7 +423,12 @@ class TeamManager extends EventEmitter {
423
423
 
424
424
  const dbPath = await this.getDataFileByDid(did);
425
425
  logger.info('initDatabase', { did, dbPath });
426
- await doSchemaMigration(dbPath, 'blocklet');
426
+ try {
427
+ await doSchemaMigration(dbPath, 'blocklet');
428
+ } catch (error) {
429
+ // This error is not fatal, just log it, will happen when there are multiple service processes
430
+ logger.error('initDatabase failed', { did, dbPath, error });
431
+ }
427
432
  }
428
433
 
429
434
  async getPid(did) {
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.16.8-next-1401044b",
6
+ "version": "1.16.8-next-5e42c978",
7
7
  "description": "",
8
8
  "main": "lib/index.js",
9
9
  "files": [
@@ -19,18 +19,18 @@
19
19
  "author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
20
20
  "license": "MIT",
21
21
  "dependencies": {
22
- "@abtnode/auth": "1.16.8-next-1401044b",
23
- "@abtnode/certificate-manager": "1.16.8-next-1401044b",
24
- "@abtnode/constant": "1.16.8-next-1401044b",
25
- "@abtnode/cron": "1.16.8-next-1401044b",
26
- "@abtnode/logger": "1.16.8-next-1401044b",
27
- "@abtnode/models": "1.16.8-next-1401044b",
28
- "@abtnode/queue": "1.16.8-next-1401044b",
29
- "@abtnode/rbac": "1.16.8-next-1401044b",
30
- "@abtnode/router-provider": "1.16.8-next-1401044b",
31
- "@abtnode/static-server": "1.16.8-next-1401044b",
32
- "@abtnode/timemachine": "1.16.8-next-1401044b",
33
- "@abtnode/util": "1.16.8-next-1401044b",
22
+ "@abtnode/auth": "1.16.8-next-5e42c978",
23
+ "@abtnode/certificate-manager": "1.16.8-next-5e42c978",
24
+ "@abtnode/constant": "1.16.8-next-5e42c978",
25
+ "@abtnode/cron": "1.16.8-next-5e42c978",
26
+ "@abtnode/logger": "1.16.8-next-5e42c978",
27
+ "@abtnode/models": "1.16.8-next-5e42c978",
28
+ "@abtnode/queue": "1.16.8-next-5e42c978",
29
+ "@abtnode/rbac": "1.16.8-next-5e42c978",
30
+ "@abtnode/router-provider": "1.16.8-next-5e42c978",
31
+ "@abtnode/static-server": "1.16.8-next-5e42c978",
32
+ "@abtnode/timemachine": "1.16.8-next-5e42c978",
33
+ "@abtnode/util": "1.16.8-next-5e42c978",
34
34
  "@arcblock/did": "1.18.80",
35
35
  "@arcblock/did-auth": "1.18.80",
36
36
  "@arcblock/did-ext": "^1.18.80",
@@ -41,9 +41,9 @@
41
41
  "@arcblock/pm2-events": "^0.0.5",
42
42
  "@arcblock/validator": "^1.18.80",
43
43
  "@arcblock/vc": "1.18.80",
44
- "@blocklet/constant": "1.16.8-next-1401044b",
45
- "@blocklet/meta": "1.16.8-next-1401044b",
46
- "@blocklet/sdk": "1.16.8-next-1401044b",
44
+ "@blocklet/constant": "1.16.8-next-5e42c978",
45
+ "@blocklet/meta": "1.16.8-next-5e42c978",
46
+ "@blocklet/sdk": "1.16.8-next-5e42c978",
47
47
  "@did-space/client": "^0.2.91",
48
48
  "@fidm/x509": "^1.2.1",
49
49
  "@ocap/mcrypto": "1.18.80",
@@ -96,5 +96,5 @@
96
96
  "express": "^4.18.2",
97
97
  "jest": "^27.5.1"
98
98
  },
99
- "gitHead": "414ed292a52361caefb51a7f728fa3cdfa944fec"
99
+ "gitHead": "e5764f753181ed6a7c615cd4fc6682aacf0cb7cd"
100
100
  }