@@ -79,6 +79,7 @@ async def start_local(
79
79
namespace : str = "default" ,
80
80
data_converter : temporalio .converter .DataConverter = temporalio .converter .DataConverter .default ,
81
81
interceptors : Sequence [temporalio .client .Interceptor ] = [],
82
+ plugins : Sequence [temporalio .client .Plugin ] = [],
82
83
default_workflow_query_reject_condition : Optional [
83
84
temporalio .common .QueryRejectCondition
84
85
] = None ,
@@ -213,6 +214,7 @@ async def start_local(
213
214
namespace = namespace ,
214
215
data_converter = data_converter ,
215
216
interceptors = interceptors ,
217
+ plugins = plugins ,
216
218
default_workflow_query_reject_condition = default_workflow_query_reject_condition ,
217
219
tls = tls ,
218
220
retry_config = retry_config ,
@@ -237,6 +239,7 @@ async def start_time_skipping(
237
239
* ,
238
240
data_converter : temporalio .converter .DataConverter = temporalio .converter .DataConverter .default ,
239
241
interceptors : Sequence [temporalio .client .Interceptor ] = [],
242
+ plugins : Sequence [temporalio .client .Plugin ] = [],
240
243
default_workflow_query_reject_condition : Optional [
241
244
temporalio .common .QueryRejectCondition
242
245
] = None ,
@@ -332,6 +335,7 @@ async def start_time_skipping(
332
335
server .target ,
333
336
data_converter = data_converter ,
334
337
interceptors = interceptors ,
338
+ plugins = plugins ,
335
339
default_workflow_query_reject_condition = default_workflow_query_reject_condition ,
336
340
retry_config = retry_config ,
337
341
rpc_metadata = rpc_metadata ,
0 commit comments