@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/index.js CHANGED
@@ -30,7 +30,7 @@ import {
30
30
  providerMetrics,
31
31
  recordRuntimeInfo,
32
32
  timeoutError
33
- } from "./chunk-RPV67F56.js";
33
+ } from "./chunk-YBKSM3GO.js";
34
34
  import {
35
35
  Plugin,
36
36
  PluginManager
@@ -28,7 +28,7 @@ import {
28
28
  require_lib4,
29
29
  require_src,
30
30
  withAbort
31
- } from "./chunk-RPV67F56.js";
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["log-format"] === "json", logLevel === "debug" ? true : options.debug);
24478
+ setupLogger(options.logFormat === "json", logLevel === "debug" ? true : options.debug);
24479
24479
  console.debug("Starting with", options.target);
24480
- await setupOTLP(options["otlp-debug"]);
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["start-action-server"]) {
24491
+ if (options.startActionServer) {
24492
24492
  server = new ActionServer(loader);
24493
24493
  server.listen(options.port);
24494
24494
  } else {