File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed
apps/webapp/app/v3/services Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,16 @@ export class ResumeTaskDependencyService extends BaseService {
39
39
const dependentRun = dependency . dependentAttempt . taskRun ;
40
40
41
41
if ( dependency . dependentAttempt . status === "PAUSED" && dependency . checkpointEventId ) {
42
+ logger . debug (
43
+ "Task dependency resume: Attempt is paused and there's a checkpoint. Enqueuing resume with checkpoint." ,
44
+ {
45
+ attemptId : dependency . id ,
46
+ dependentAttempt : dependency . dependentAttempt ,
47
+ checkpointEventId : dependency . checkpointEventId ,
48
+ hasCheckpointEvent : ! ! dependency . checkpointEventId ,
49
+ runId : dependentRun . id ,
50
+ }
51
+ ) ;
42
52
await marqs ?. enqueueMessage (
43
53
dependency . taskRun . runtimeEnvironment ,
44
54
dependentRun . queue ,
@@ -61,6 +71,7 @@ export class ResumeTaskDependencyService extends BaseService {
61
71
dependentAttempt : dependency . dependentAttempt ,
62
72
checkpointEventId : dependency . checkpointEventId ,
63
73
hasCheckpointEvent : ! ! dependency . checkpointEventId ,
74
+ runId : dependentRun . id ,
64
75
} ) ;
65
76
66
77
if ( dependency . dependentAttempt . status === "PAUSED" && ! dependency . checkpointEventId ) {
You can’t perform that action at this time.
0 commit comments