@sentio/runtime 2.57.12-rc.b → 2.57.12-rc.c
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/lib/processor-runner.js
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
import { createRequire as createRequireShim } from 'module'; const require = createRequireShim(import.meta.url);
|
3
3
|
import {
|
4
4
|
optionDefinitions
|
5
|
-
} from "./chunk-
|
5
|
+
} from "./chunk-ANRIDUBX.js";
|
6
6
|
import "./chunk-HBDDXJ53.js";
|
7
7
|
export {
|
8
8
|
optionDefinitions
|
package/lib/service-worker.js
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@sentio/runtime",
|
3
|
-
"version": "2.57.12-rc.
|
3
|
+
"version": "2.57.12-rc.c",
|
4
4
|
"license": "Apache-2.0",
|
5
5
|
"type": "module",
|
6
6
|
"exports": {
|
@@ -15,31 +15,7 @@
|
|
15
15
|
"!**/*.test.{js,ts}",
|
16
16
|
"!{lib,src}/tests"
|
17
17
|
],
|
18
|
-
"dependencies": {
|
19
|
-
"@grpc/grpc-js": "^1.9.14",
|
20
|
-
"@opentelemetry/exporter-metrics-otlp-grpc": "^0.57.0",
|
21
|
-
"@opentelemetry/exporter-prometheus": "^0.57.0",
|
22
|
-
"@opentelemetry/sdk-node": "^0.57.0",
|
23
|
-
"command-line-args": "^6.0.0",
|
24
|
-
"command-line-usage": "^7.0.1",
|
25
|
-
"ethers": "npm:@sentio/ethers@6.13.1-patch.5",
|
26
|
-
"fs-extra": "^11.2.0",
|
27
|
-
"google-protobuf": "^3.21.2",
|
28
|
-
"ix": "^7.0.0",
|
29
|
-
"long": "^5.2.3",
|
30
|
-
"nice-grpc": "^2.1.10",
|
31
|
-
"nice-grpc-client-middleware-retry": "^3.1.6",
|
32
|
-
"nice-grpc-common": "^2.0.2",
|
33
|
-
"nice-grpc-error-details": "^0.2.4",
|
34
|
-
"nice-grpc-opentelemetry": "^0.1.15",
|
35
|
-
"nice-grpc-prometheus": "^0.2.2",
|
36
|
-
"protobufjs": "^7.2.6",
|
37
|
-
"rxjs": "^7.8.1",
|
38
|
-
"utility-types": "^3.11.0",
|
39
|
-
"winston": "^3.11.0",
|
40
|
-
"piscina": "5.0.0-alpha.0",
|
41
|
-
"@sentio/protos": "2.57.12-rc.b"
|
42
|
-
},
|
18
|
+
"dependencies": {},
|
43
19
|
"devDependencies": {
|
44
20
|
"@types/command-line-args": "^5.2.3",
|
45
21
|
"@types/command-line-usage": "^5.0.4",
|
package/src/service-manager.ts
CHANGED
@@ -52,7 +52,8 @@ export class ServiceManager implements ProcessorServiceImplementation {
|
|
52
52
|
this.pool = new Piscina({
|
53
53
|
maxThreads: options.worker,
|
54
54
|
minThreads: options.worker,
|
55
|
-
filename: new URL('./service-worker.js', import.meta.url).href
|
55
|
+
filename: new URL('./service-worker.js', import.meta.url).href,
|
56
|
+
argv: process.argv
|
56
57
|
})
|
57
58
|
}
|
58
59
|
|