@sentio/runtime 4.3.3-rc.1 → 4.3.4-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": "4.3.3-rc.1",
3
+ "version": "4.3.4-rc.1",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
package/src/service-v3.ts CHANGED
@@ -28,7 +28,6 @@ type ProcessStreamResponseV3Init = MessageInitShape<typeof ProcessStreamResponse
28
28
 
29
29
  const { process_binding_count, process_binding_time, process_binding_error } = processMetrics
30
30
 
31
- const WRITE_V2_EVENT_LOGS = process.env.WRITE_V2_EVENT_LOGS !== 'false'
32
31
  const TIME_SERIES_RESULT_BATCH_SIZE = 1000
33
32
 
34
33
  export class ProcessorServiceImplV3 implements ServiceImpl<typeof ProcessorV3> {
@@ -186,7 +185,7 @@ export class ProcessorServiceImplV3 implements ServiceImpl<typeof ProcessorV3> {
186
185
  processId,
187
186
  value: {
188
187
  case: 'result',
189
- value: WRITE_V2_EVENT_LOGS ? otherResults : create(ProcessResultSchema, { states: result.states })
188
+ value: otherResults
190
189
  }
191
190
  })
192
191
  })