File tree 1 file changed +0
-4
lines changed
1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,6 @@ export type BatchEventProcessorConfig = {
62
62
63
63
type EventBatch = {
64
64
request : LogEvent ,
65
- // ids: string[],
66
65
events : EventWithId [ ] ,
67
66
}
68
67
@@ -146,7 +145,6 @@ export class BatchEventProcessor extends BaseService implements EventProcessor {
146
145
( currentBatch . length > 0 && ! areEventContextsEqual ( currentBatch [ 0 ] . event , event . event ) ) ) {
147
146
batches . push ( {
148
147
request : buildLogEvent ( currentBatch . map ( ( e ) => e . event ) ) ,
149
- // ids: currentBatch.map((e) => e.id),
150
148
events : currentBatch ,
151
149
} ) ;
152
150
currentBatch = [ ] ;
@@ -157,7 +155,6 @@ export class BatchEventProcessor extends BaseService implements EventProcessor {
157
155
if ( currentBatch . length > 0 ) {
158
156
batches . push ( {
159
157
request : buildLogEvent ( currentBatch . map ( ( e ) => e . event ) ) ,
160
- // ids: currentBatch.map((e) => e.id),
161
158
events : currentBatch ,
162
159
} ) ;
163
160
}
@@ -198,7 +195,6 @@ export class BatchEventProcessor extends BaseService implements EventProcessor {
198
195
const { request, events } = batch ;
199
196
200
197
events . forEach ( ( event ) => {
201
- // this.dispatchingEventIds.add(id);
202
198
this . dispatchingEvents . set ( event . id , event ) ;
203
199
} ) ;
204
200
You can’t perform that action at this time.
0 commit comments