File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
internal-packages/run-engine/src/engine Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -1251,6 +1251,7 @@ export class RunEngine {
1251
1251
} ,
1252
1252
orgId : latestSnapshot . organizationId ,
1253
1253
projectId : latestSnapshot . projectId ,
1254
+ checkpointId : latestSnapshot . checkpointId ?? undefined ,
1254
1255
error : {
1255
1256
type : "INTERNAL_ERROR" ,
1256
1257
code : "TASK_RUN_DEQUEUED_MAX_RETRIES" ,
Original file line number Diff line number Diff line change @@ -1129,6 +1129,7 @@ export class RunAttemptSystem {
1129
1129
error,
1130
1130
workerId,
1131
1131
runnerId,
1132
+ checkpointId,
1132
1133
tx,
1133
1134
} : {
1134
1135
run : TaskRun ;
@@ -1142,6 +1143,7 @@ export class RunAttemptSystem {
1142
1143
error : TaskRunInternalError ;
1143
1144
workerId ?: string ;
1144
1145
runnerId ?: string ;
1146
+ checkpointId ?: string ;
1145
1147
tx ?: PrismaClientOrTransaction ;
1146
1148
} ) : Promise < { wasRequeued : boolean } & ExecutionResult > {
1147
1149
const prisma = tx ?? this . $ . prisma ;
@@ -1189,6 +1191,7 @@ export class RunAttemptSystem {
1189
1191
organizationId : orgId ,
1190
1192
workerId,
1191
1193
runnerId,
1194
+ checkpointId,
1192
1195
} ) ;
1193
1196
1194
1197
return {
You can’t perform that action at this time.
0 commit comments