Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions openapi/openapiv2.json
Original file line number Diff line number Diff line change
Expand Up @@ -13500,6 +13500,11 @@
"startDelay": {
"type": "string",
"description": "Time to wait before making the first activity task available for dispatch. This delay is not applied to retry attempts."
},
"executionTime": {
"type": "string",
"format": "date-time",
"description": "The time at which the first activity task is made available for dispatch, computed as\n`schedule_time + start_delay`. Same as `schedule_time` if `start_delay` is not set."
}
},
"description": "Information about a standalone activity."
Expand Down
6 changes: 6 additions & 0 deletions openapi/openapiv3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9852,6 +9852,12 @@ components:
pattern: ^-?(?:0|[1-9][0-9]{0,11})(?:\.[0-9]{1,9})?s$
type: string
description: Time to wait before making the first activity task available for dispatch. This delay is not applied to retry attempts.
executionTime:
type: string
description: |-
The time at which the first activity task is made available for dispatch, computed as
`schedule_time + start_delay`. Same as `schedule_time` if `start_delay` is not set.
format: date-time
description: Information about a standalone activity.
ActivityExecutionListInfo:
type: object
Expand Down
4 changes: 4 additions & 0 deletions temporal/api/activity/v1/message.proto
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,10 @@ message ActivityExecutionInfo {

// Time to wait before making the first activity task available for dispatch. This delay is not applied to retry attempts.
google.protobuf.Duration start_delay = 37;

// The time at which the first activity task is made available for dispatch, computed as
// `schedule_time + start_delay`. Same as `schedule_time` if `start_delay` is not set.
google.protobuf.Timestamp execution_time = 38;
}

// Limited activity information returned in the list response.
Expand Down
Loading