Skip to content

Commit 1d5fea2

Browse files
authored
Update Core SDK in preparation for 1.12.3 (#1766)
1 parent 544e2b2 commit 1d5fea2

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

packages/core-bridge/sdk-core

Submodule sdk-core updated 50 files

packages/core-bridge/src/client.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,7 @@ async fn client_invoke(mut retry_client: CoreClient, call: RpcCall) -> BridgeRes
220220
rpc_call!(retry_client, call, describe_workflow_rule)
221221
}
222222
"ExecuteMultiOperation" => rpc_call!(retry_client, call, execute_multi_operation),
223+
"FetchWorkerConfig" => rpc_call!(retry_client, call, fetch_worker_config),
223224
"GetClusterInfo" => rpc_call!(retry_client, call, get_cluster_info),
224225
"GetCurrentDeployment" => rpc_call!(retry_client, call, get_current_deployment),
225226
"GetDeploymentReachability" => {
@@ -399,13 +400,17 @@ async fn client_invoke(mut retry_client: CoreClient, call: RpcCall) -> BridgeRes
399400
rpc_call!(retry_client, call, update_namespace)
400401
}
401402
"UpdateSchedule" => rpc_call!(retry_client, call, update_schedule),
403+
"UpdateWorkerConfig" => rpc_call!(retry_client, call, update_worker_config),
402404
"UpdateWorkerDeploymentVersionMetadata" => {
403405
rpc_call!(
404406
retry_client,
405407
call,
406408
update_worker_deployment_version_metadata
407409
)
408410
}
411+
"UpdateTaskQueueConfig" => {
412+
rpc_call!(retry_client, call, update_task_queue_config)
413+
}
409414
"UpdateWorkflowExecution" => {
410415
rpc_call!(retry_client, call, update_workflow_execution)
411416
}

0 commit comments

Comments
 (0)