temporalio / sdk-go

Temporal Go SDK
https://docs.temporal.io/application-development?lang=go
MIT License
481 stars 197 forks source link

Update some docs around grpc Dial options #1514

Closed Quinn-With-Two-Ns closed 2 weeks ago

Quinn-With-Two-Ns commented 3 weeks ago

Update some docs around grpc Dial options because grpc-go deprecated grpc.Dial so we switched to grpc.NewClient that doesn't support some of these dial options because they are anti patterns not recommended by the gRPC team.

https://github.com/grpc/grpc-go/blob/master/Documentation/anti-patterns.md

Another thing we could do is add a flag to use the old deprecated client options to help who did rely on these options.