We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c171b7 commit 17193aaCopy full SHA for 17193aa
client/service_proxy.go
@@ -40,5 +40,10 @@ type WorkflowServiceProxyOptions struct {
40
// be forwarded to the passed in WorkflowService Client. GRPC interceptors can be added on the Server or Client to adjust
41
// requests and responses.
42
func NewWorkflowServiceProxyServer(options WorkflowServiceProxyOptions) (workflowservice.WorkflowServiceServer, error) {
43
- return proxy.NewWorkflowServiceProxyServer(proxy.WorkflowServiceProxyOptions(options))
+ 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
+ })
49
}
0 commit comments