File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
internal-packages/run-engine/src/engine/systems
packages/core/src/v3/schemas Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -188,6 +188,7 @@ export class RunAttemptSystem {
188
188
runTags : true ,
189
189
isTest : true ,
190
190
idempotencyKey : true ,
191
+ concurrencyKey : true ,
191
192
startedAt : true ,
192
193
maxAttempts : true ,
193
194
taskVersion : true ,
@@ -255,6 +256,7 @@ export class RunAttemptSystem {
255
256
createdAt : run . createdAt ,
256
257
startedAt : run . startedAt ?? run . createdAt ,
257
258
idempotencyKey : run . idempotencyKey ?? undefined ,
259
+ concurrencyKey : run . concurrencyKey ?? undefined ,
258
260
maxAttempts : run . maxAttempts ?? undefined ,
259
261
version : run . taskVersion ?? "unknown" ,
260
262
maxDuration : run . maxDurationInSeconds ?? undefined ,
Original file line number Diff line number Diff line change @@ -215,6 +215,7 @@ export const TaskRun = z.object({
215
215
createdAt : z . coerce . date ( ) ,
216
216
startedAt : z . coerce . date ( ) . default ( ( ) => new Date ( ) ) ,
217
217
idempotencyKey : z . string ( ) . optional ( ) ,
218
+ concurrencyKey : z . string ( ) . optional ( ) ,
218
219
maxAttempts : z . number ( ) . optional ( ) ,
219
220
version : z . string ( ) . optional ( ) ,
220
221
metadata : z . record ( DeserializedJsonSchema ) . optional ( ) ,
You can’t perform that action at this time.
0 commit comments