@sentio/runtime 2.62.0-rc.6 → 2.62.0-rc.7
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/{chunk-RPV67F56.js → chunk-YBKSM3GO.js} +5 -5
- package/lib/{chunk-RPV67F56.js.map → chunk-YBKSM3GO.js.map} +1 -1
- package/lib/index.js +1 -1
- package/lib/processor-runner.js +4 -4
- package/lib/processor-runner.js.map +1 -1
- package/lib/service-worker.js +4 -4
- package/lib/service-worker.js.map +1 -1
- package/package.json +1 -1
- package/src/endpoints.ts +4 -4
- package/src/processor-runner.ts +3 -3
- package/src/service-worker.ts +3 -3
package/lib/index.js
CHANGED
package/lib/processor-runner.js
CHANGED
|
@@ -28,7 +28,7 @@ import {
|
|
|
28
28
|
require_lib4,
|
|
29
29
|
require_src,
|
|
30
30
|
withAbort
|
|
31
|
-
} from "./chunk-
|
|
31
|
+
} from "./chunk-YBKSM3GO.js";
|
|
32
32
|
import {
|
|
33
33
|
ExecutionConfig,
|
|
34
34
|
HandlerType,
|
|
@@ -24475,9 +24475,9 @@ program2.allowUnknownOption().allowExcessArguments().name("processor-runner").de
|
|
|
24475
24475
|
program2.parse();
|
|
24476
24476
|
async function startServer(options) {
|
|
24477
24477
|
const logLevel = process.env["LOG_LEVEL"]?.toLowerCase();
|
|
24478
|
-
setupLogger(options
|
|
24478
|
+
setupLogger(options.logFormat === "json", logLevel === "debug" ? true : options.debug);
|
|
24479
24479
|
console.debug("Starting with", options.target);
|
|
24480
|
-
await setupOTLP(options
|
|
24480
|
+
await setupOTLP(options.otlpDebug);
|
|
24481
24481
|
Error.stackTraceLimit = 20;
|
|
24482
24482
|
configureEndpoints(options);
|
|
24483
24483
|
console.debug("Starting Server", options);
|
|
@@ -24488,7 +24488,7 @@ async function startServer(options) {
|
|
|
24488
24488
|
console.debug("Module loaded", m);
|
|
24489
24489
|
return m;
|
|
24490
24490
|
};
|
|
24491
|
-
if (options
|
|
24491
|
+
if (options.startActionServer) {
|
|
24492
24492
|
server = new ActionServer(loader);
|
|
24493
24493
|
server.listen(options.port);
|
|
24494
24494
|
} else {
|