File tree Expand file tree Collapse file tree 2 files changed +19
-0
lines changed
apps/webapp/app/v3/services Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -208,6 +208,15 @@ export async function createBackgroundTasks(
208208 taskQueue . concurrencyLimit
209209 ) ;
210210 } else {
211+ logger . debug ( "CreateBackgroundWorkerService: removing concurrency limit" , {
212+ workerId : worker . id ,
213+ taskQueue,
214+ orgId : environment . organizationId ,
215+ projectId : environment . projectId ,
216+ environmentId : environment . id ,
217+ concurrencyLimit,
218+ taskidentifier : task . id ,
219+ } ) ;
211220 await marqs ?. removeQueueConcurrencyLimits ( environment , taskQueue . name ) ;
212221 }
213222 } catch ( error ) {
Original file line number Diff line number Diff line change @@ -474,6 +474,16 @@ export class TriggerTaskService extends BaseService {
474474 taskQueue . concurrencyLimit
475475 ) ;
476476 } else {
477+ logger . debug ( "TriggerTaskService: removing concurrency limit" , {
478+ runId : taskRun . id ,
479+ friendlyId : taskRun . friendlyId ,
480+ taskQueue,
481+ orgId : environment . organizationId ,
482+ projectId : environment . projectId ,
483+ existingConcurrencyLimit,
484+ concurrencyLimit,
485+ queueOptions : body . options ?. queue ,
486+ } ) ;
477487 await marqs ?. removeQueueConcurrencyLimits ( environment , taskQueue . name ) ;
478488 }
479489 }
You can’t perform that action at this time.
0 commit comments