Skip to content

Commit 17193aa

Browse files
authoredJun 6, 2024··
Manually copy proxy options (#1502)
1 parent 5c171b7 commit 17193aa

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed
 

‎client/service_proxy.go

+6-1
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,10 @@ type WorkflowServiceProxyOptions struct {
4040
// be forwarded to the passed in WorkflowService Client. GRPC interceptors can be added on the Server or Client to adjust
4141
// requests and responses.
4242
func NewWorkflowServiceProxyServer(options WorkflowServiceProxyOptions) (workflowservice.WorkflowServiceServer, error) {
43-
return proxy.NewWorkflowServiceProxyServer(proxy.WorkflowServiceProxyOptions(options))
43+
return proxy.NewWorkflowServiceProxyServer(proxy.WorkflowServiceProxyOptions{
44+
// These options are expected to be kept mostly in sync, but we can't do a
45+
// naive type conversion because we want users to be able to update to newer
46+
// API library versions with older SDK versions.
47+
Client: options.Client,
48+
})
4449
}

0 commit comments

Comments
 (0)
Please sign in to comment.