We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7652d8e commit b5cdb0cCopy full SHA for b5cdb0c
apps/webapp/app/v3/services/resumeBatchRun.server.ts
@@ -122,7 +122,9 @@ export class ResumeBatchRunService extends BaseService {
122
// When the checkpoint is created, it will continue the run
123
logger.error("ResumeBatchRunService: attempt is paused but there's no checkpoint event", {
124
batchRunId: batchRun.id,
125
- dependentTaskAttemptId: batchRun.dependentTaskAttempt.id,
+ dependentTaskAttempt: batchRun.dependentTaskAttempt,
126
+ checkpointEventId: batchRun.checkpointEventId,
127
+ hasCheckpointEvent: !!batchRun.checkpointEventId,
128
});
129
return;
130
}
0 commit comments