Skip to content
Open
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
4 changes: 4 additions & 0 deletions openapi/openapiv2.json
Original file line number Diff line number Diff line change
Expand Up @@ -13632,6 +13632,10 @@
"priority": {
"$ref": "#/definitions/v1Priority",
"description": "Priority metadata. If this message is not present, or any fields are not\npresent, they inherit the values from the workflow."
},
"startDelay": {
"type": "string",
"description": "Time to wait before dispatching the first activity task. This delay is not applied to retry attempts.\nWhen updated, anchored to the original `schedule_time`. If the resulting time is in the past, dispatches\nimmediately."
}
}
},
Expand Down
7 changes: 7 additions & 0 deletions openapi/openapiv3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9997,6 +9997,13 @@ components:
description: |-
Priority metadata. If this message is not present, or any fields are not
present, they inherit the values from the workflow.
startDelay:
pattern: ^-?(?:0|[1-9][0-9]{0,11})(?:\.[0-9]{1,9})?s$
type: string
description: |-
Time to wait before dispatching the first activity task. This delay is not applied to retry attempts.
When updated, anchored to the original `schedule_time`. If the resulting time is in the past, dispatches
immediately.
ActivityPropertiesModifiedExternallyEventAttributes:
type: object
properties:
Expand Down
5 changes: 5 additions & 0 deletions temporal/api/activity/v1/message.proto
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,11 @@ message ActivityOptions {
// Priority metadata. If this message is not present, or any fields are not
// present, they inherit the values from the workflow.
temporal.api.common.v1.Priority priority = 7;

// Time to wait before dispatching the first activity task. This delay is not applied to retry attempts.
// When updated, anchored to the original `schedule_time`. If the resulting time is in the past, dispatches
// immediately.
google.protobuf.Duration start_delay = 8;
}

// Information about a standalone activity.
Expand Down
Loading