Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 5.35 KB

File metadata and controls

20 lines (15 loc) · 5.35 KB

ActivityTaskRetryingResponse

Emitted when an activity task fails and will be retried.

Contains information about the failed attempt and the error that occurred.

Fields

Field Type Required Description
event_id str ✔️ Unique identifier for this event instance.
event_timestamp int ✔️ Unix timestamp in nanoseconds when the event was created.
root_workflow_exec_id str ✔️ Execution ID of the root workflow that initiated this execution chain.
parent_workflow_exec_id Nullable[str] ✔️ Execution ID of the parent workflow that initiated this execution. If this is a root workflow, this field is not set.
workflow_exec_id str ✔️ Execution ID of the workflow that emitted this event.
workflow_run_id str ✔️ Run ID of the workflow execution. Changes on continue-as-new while workflow_exec_id stays the same.
workflow_name str ✔️ The registered name of the workflow that emitted this event.
event_type Optional[Literal["ACTIVITY_TASK_RETRYING"]] Event type discriminator.
attributes models.ActivityTaskRetryingAttributes ✔️ Attributes for activity task retrying events.