File tree Expand file tree Collapse file tree 1 file changed +12
-9
lines changed
apps/webapp/app/runEngine/services Expand file tree Collapse file tree 1 file changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -273,15 +273,18 @@ export class RunEngineBatchTriggerService extends WithRunEngine {
273273
274274 switch ( this . _batchProcessingStrategy ) {
275275 case "sequential" : {
276- await this . #enqueueBatchTaskRun( {
277- batchId : batch . id ,
278- processingId : batchId ,
279- range : { start : 0 , count : PROCESSING_BATCH_SIZE } ,
280- attemptCount : 0 ,
281- strategy : this . _batchProcessingStrategy ,
282- parentRunId : body . parentRunId ,
283- resumeParentOnCompletion : body . resumeParentOnCompletion ,
284- } ) ;
276+ await this . #enqueueBatchTaskRun(
277+ {
278+ batchId : batch . id ,
279+ processingId : batchId ,
280+ range : { start : 0 , count : PROCESSING_BATCH_SIZE } ,
281+ attemptCount : 0 ,
282+ strategy : this . _batchProcessingStrategy ,
283+ parentRunId : body . parentRunId ,
284+ resumeParentOnCompletion : body . resumeParentOnCompletion ,
285+ } ,
286+ tx
287+ ) ;
285288
286289 break ;
287290 }
You can’t perform that action at this time.
0 commit comments