File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -2020,6 +2020,7 @@ async def _start_update(
2020
2020
StartWorkflowUpdateInput (
2021
2021
id = self ._id ,
2022
2022
run_id = self ._run_id ,
2023
+ first_execution_run_id = self .first_execution_run_id ,
2023
2024
update_id = id ,
2024
2025
update = update_name ,
2025
2026
args = temporalio .common ._arg_or_args (arg , args ),
@@ -4648,6 +4649,7 @@ class StartWorkflowUpdateInput:
4648
4649
4649
4650
id : str
4650
4651
run_id : Optional [str ]
4652
+ first_execution_run_id : Optional [str ]
4651
4653
update_id : Optional [str ]
4652
4654
update : str
4653
4655
args : Sequence [Any ]
@@ -5275,6 +5277,7 @@ async def start_workflow_update(
5275
5277
workflow_id = input .id ,
5276
5278
run_id = input .run_id or "" ,
5277
5279
),
5280
+ first_execution_run_id = input .first_execution_run_id or "" ,
5278
5281
request = temporalio .api .update .v1 .Request (
5279
5282
meta = temporalio .api .update .v1 .Meta (
5280
5283
update_id = input .update_id or str (uuid .uuid4 ()),
You can’t perform that action at this time.
0 commit comments