Open
Description
When trying to upgrade grpc-go to include our changes to add the NewClient
method, we accidentally broke the go sdk. The issue stems from how we used the replace
directive to point to our forked version of grpc-go.
Line 24 in 01d60a2
When a customer would install our sdk, they would see an error saying NewClient method does not exist
. This should have been caught by our examples
Line 11 in 01d60a2
Which we pointing to a version of the sdk that included this replace change, but the examples passed. We should figure out why they were passing, and fix it so they are able to validate our sdk installs correctly. The change was released in version 1.17.0
Activity