Skip to content

Commit 30388d8

Browse files
committed
Fix merge
1 parent 294b7e2 commit 30388d8

5 files changed

Lines changed: 104 additions & 100 deletions

File tree

temporalio/api/activity/v1/message_pb2.py

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

temporalio/api/activity/v1/message_pb2.pyi

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,7 @@ class ActivityExecutionInfo(google.protobuf.message.Message):
209209
TOTAL_HEARTBEAT_COUNT_FIELD_NUMBER: builtins.int
210210
SDK_NAME_FIELD_NUMBER: builtins.int
211211
SDK_VERSION_FIELD_NUMBER: builtins.int
212+
START_DELAY_FIELD_NUMBER: builtins.int
212213
activity_id: builtins.str
213214
"""Unique identifier of this activity within its namespace along with run ID (below)."""
214215
run_id: builtins.str
@@ -341,6 +342,9 @@ class ActivityExecutionInfo(google.protobuf.message.Message):
341342
"""The version of the SDK of the worker that most recently picked up an attempt of this activity.
342343
Overwritten on each new attempt. Empty if unknown.
343344
"""
345+
@property
346+
def start_delay(self) -> google.protobuf.duration_pb2.Duration:
347+
"""Time to wait before dispatching the first activity task. This delay is not applied to retry attempts."""
344348
def __init__(
345349
self,
346350
*,
@@ -386,6 +390,7 @@ class ActivityExecutionInfo(google.protobuf.message.Message):
386390
total_heartbeat_count: builtins.int = ...,
387391
sdk_name: builtins.str = ...,
388392
sdk_version: builtins.str = ...,
393+
start_delay: google.protobuf.duration_pb2.Duration | None = ...,
389394
) -> None: ...
390395
def HasField(
391396
self,

temporalio/api/workflowservice/v1/request_response_pb2.py

Lines changed: 62 additions & 62 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

temporalio/bridge/Cargo.lock

Lines changed: 26 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)