We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 588b99b + 17cee86 commit dd3910fCopy full SHA for dd3910f
sidecar/internal/test/rpc.go
@@ -89,5 +89,9 @@ func ClientConn(tmpSockUri string) (*grpc.ClientConn, error) {
89
return grpc.NewClient(tmpSockUri,
90
// nothing fancy for unit tests
91
grpc.WithTransportCredentials(insecure.NewCredentials()),
92
+ grpc.WithDefaultCallOptions(
93
+ // Handle server starting slower than client calls in tests
94
+ grpc.WaitForReady(true),
95
+ ),
96
)
97
}
0 commit comments