@sentio/runtime 2.44.4-rc.2 → 2.44.5-rc.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentio/runtime",
3
- "version": "2.44.4-rc.2",
3
+ "version": "2.44.5-rc.1",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "exports": {
@@ -90,11 +90,12 @@ console.debug('Starting Server', options)
90
90
  let server: Server
91
91
  let baseService: ProcessorServiceImpl
92
92
 
93
- if (options.startActionServer) {
93
+ if (options['start-action-server']) {
94
94
  const pluginManager = PluginManager.INSTANCE
95
95
  pluginManager
96
96
  .configure(ProcessConfigResponse.create())
97
97
  .then(() => {
98
+ console.log('Starting Action Server at:', options.port)
98
99
  return pluginManager.startServer(options.port)
99
100
  })
100
101
  .catch((err) => {