We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1016bc commit b2fba25Copy full SHA for b2fba25
temporalio/worker/_workflow.py
@@ -522,6 +522,7 @@ def _create_workflow_instance(
522
execution_timeout=init.workflow_execution_timeout.ToTimedelta()
523
if init.HasField("workflow_execution_timeout")
524
else None,
525
+ first_execution_run_id=init.first_execution_run_id,
526
headers=dict(init.headers),
527
namespace=self._namespace,
528
parent=parent,
temporalio/workflow.py
@@ -493,6 +493,7 @@ class Info:
493
continued_run_id: Optional[str]
494
cron_schedule: Optional[str]
495
execution_timeout: Optional[timedelta]
496
+ first_execution_run_id: str
497
headers: Mapping[str, temporalio.api.common.v1.Payload]
498
namespace: str
499
parent: Optional[ParentInfo]
0 commit comments