@abtnode/core 1.16.27-beta-d1555a79 → 1.16.27-beta-595ed831

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.
@@ -664,10 +664,11 @@ class DiskBlockletManager extends BaseBlockletManager {
664
664
  }
665
665
 
666
666
  async start(
667
- { did, throwOnError, checkHealthImmediately = false, e2eMode = false, componentDids: inputComponentDids, atomic },
667
+ { did, throwOnError, checkHealthImmediately = false, e2eMode = false, componentDids: _inputComponentDids, atomic },
668
668
  context
669
669
  ) {
670
670
  const blocklet = await this.ensureBlocklet(did, { e2eMode });
671
+ const inputComponentDids = Array.from(new Set(_inputComponentDids || []));
671
672
  let componentDids = inputComponentDids?.length ? inputComponentDids : blocklet.children.map((x) => x.meta.did);
672
673
 
673
674
  // sync component config before at first to ensure resource component config is ready
package/lib/util/queue.js CHANGED
@@ -13,6 +13,7 @@ const QueueStore = require('@abtnode/queue/lib/store/sequelize');
13
13
  * @param {number} [params.options.maxRetries] [param=1] number of max retries, default 1
14
14
  * @param {number} [params.options.maxTimeout] [param=86400000] max timeout, in ms, default 86400000ms(1d)
15
15
  * @param {number} [params.options.retryDelay] [param=0] retry delay, in ms, default 0ms
16
+ * @param {boolean} [params.options.enableScheduledJob]
16
17
  * @typedef {
17
18
  * EventEmitter & {
18
19
  * store: JobStore;
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.16.27-beta-d1555a79",
6
+ "version": "1.16.27-beta-595ed831",
7
7
  "description": "",
8
8
  "main": "lib/index.js",
9
9
  "files": [
@@ -19,19 +19,19 @@
19
19
  "author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
20
20
  "license": "Apache-2.0",
21
21
  "dependencies": {
22
- "@abtnode/analytics": "1.16.27-beta-d1555a79",
23
- "@abtnode/auth": "1.16.27-beta-d1555a79",
24
- "@abtnode/certificate-manager": "1.16.27-beta-d1555a79",
25
- "@abtnode/constant": "1.16.27-beta-d1555a79",
26
- "@abtnode/cron": "1.16.27-beta-d1555a79",
27
- "@abtnode/logger": "1.16.27-beta-d1555a79",
28
- "@abtnode/models": "1.16.27-beta-d1555a79",
29
- "@abtnode/queue": "1.16.27-beta-d1555a79",
30
- "@abtnode/rbac": "1.16.27-beta-d1555a79",
31
- "@abtnode/router-provider": "1.16.27-beta-d1555a79",
32
- "@abtnode/static-server": "1.16.27-beta-d1555a79",
33
- "@abtnode/timemachine": "1.16.27-beta-d1555a79",
34
- "@abtnode/util": "1.16.27-beta-d1555a79",
22
+ "@abtnode/analytics": "1.16.27-beta-595ed831",
23
+ "@abtnode/auth": "1.16.27-beta-595ed831",
24
+ "@abtnode/certificate-manager": "1.16.27-beta-595ed831",
25
+ "@abtnode/constant": "1.16.27-beta-595ed831",
26
+ "@abtnode/cron": "1.16.27-beta-595ed831",
27
+ "@abtnode/logger": "1.16.27-beta-595ed831",
28
+ "@abtnode/models": "1.16.27-beta-595ed831",
29
+ "@abtnode/queue": "1.16.27-beta-595ed831",
30
+ "@abtnode/rbac": "1.16.27-beta-595ed831",
31
+ "@abtnode/router-provider": "1.16.27-beta-595ed831",
32
+ "@abtnode/static-server": "1.16.27-beta-595ed831",
33
+ "@abtnode/timemachine": "1.16.27-beta-595ed831",
34
+ "@abtnode/util": "1.16.27-beta-595ed831",
35
35
  "@arcblock/did": "1.18.121",
36
36
  "@arcblock/did-auth": "1.18.121",
37
37
  "@arcblock/did-ext": "^1.18.121",
@@ -42,13 +42,13 @@
42
42
  "@arcblock/pm2-events": "^0.0.5",
43
43
  "@arcblock/validator": "^1.18.121",
44
44
  "@arcblock/vc": "1.18.121",
45
- "@blocklet/constant": "1.16.27-beta-d1555a79",
46
- "@blocklet/env": "1.16.27-beta-d1555a79",
47
- "@blocklet/meta": "1.16.27-beta-d1555a79",
48
- "@blocklet/resolver": "1.16.27-beta-d1555a79",
49
- "@blocklet/sdk": "1.16.27-beta-d1555a79",
50
- "@blocklet/store": "1.16.27-beta-d1555a79",
51
- "@did-space/client": "^0.4.9",
45
+ "@blocklet/constant": "1.16.27-beta-595ed831",
46
+ "@blocklet/env": "1.16.27-beta-595ed831",
47
+ "@blocklet/meta": "1.16.27-beta-595ed831",
48
+ "@blocklet/resolver": "1.16.27-beta-595ed831",
49
+ "@blocklet/sdk": "1.16.27-beta-595ed831",
50
+ "@blocklet/store": "1.16.27-beta-595ed831",
51
+ "@did-space/client": "^0.4.19",
52
52
  "@fidm/x509": "^1.2.1",
53
53
  "@ocap/mcrypto": "1.18.121",
54
54
  "@ocap/util": "1.18.121",
@@ -103,5 +103,5 @@
103
103
  "jest": "^29.7.0",
104
104
  "unzipper": "^0.10.11"
105
105
  },
106
- "gitHead": "10055507ae6190a13ee83e2f6446fd64523dd298"
106
+ "gitHead": "828e0c9511d3c1f69d07afa65fc2c965e568ec81"
107
107
  }