chore: cleanup zRPC retry code (#1280)
This commit is contained in:
@@ -16,7 +16,6 @@ We hope that the items listed below will inspire further engagement from the com
|
|||||||
- [x] Support `username/password` authentication in ETCD
|
- [x] Support `username/password` authentication in ETCD
|
||||||
- [x] Support `SSL/TLS` in `zRPC`
|
- [x] Support `SSL/TLS` in `zRPC`
|
||||||
- [x] Support `TLS` in redis connections
|
- [x] Support `TLS` in redis connections
|
||||||
- [ ] Support `retry strategies` in `zRPC`
|
|
||||||
|
|
||||||
## 2022
|
## 2022
|
||||||
- [ ] Support `goctl mock` command to start a mocking server with given `.api` file
|
- [ ] Support `goctl mock` command to start a mocking server with given `.api` file
|
||||||
|
|||||||
@@ -96,19 +96,6 @@ func TestDepositServer_Deposit(t *testing.T) {
|
|||||||
return invoker(ctx, method, req, reply, cc, opts...)
|
return invoker(ctx, method, req, reply, cc, opts...)
|
||||||
}),
|
}),
|
||||||
)
|
)
|
||||||
retryClient := MustNewClient(
|
|
||||||
RpcClientConf{
|
|
||||||
Endpoints: []string{"foo"},
|
|
||||||
App: "foo",
|
|
||||||
Token: "bar",
|
|
||||||
Timeout: 1000,
|
|
||||||
},
|
|
||||||
WithDialOption(grpc.WithContextDialer(dialer())),
|
|
||||||
WithUnaryClientInterceptor(func(ctx context.Context, method string, req, reply interface{},
|
|
||||||
cc *grpc.ClientConn, invoker grpc.UnaryInvoker, opts ...grpc.CallOption) error {
|
|
||||||
return invoker(ctx, method, req, reply, cc, opts...)
|
|
||||||
}),
|
|
||||||
)
|
|
||||||
tarConfClient := MustNewClient(
|
tarConfClient := MustNewClient(
|
||||||
RpcClientConf{
|
RpcClientConf{
|
||||||
Target: "foo",
|
Target: "foo",
|
||||||
@@ -133,7 +120,6 @@ func TestDepositServer_Deposit(t *testing.T) {
|
|||||||
clients := []Client{
|
clients := []Client{
|
||||||
directClient,
|
directClient,
|
||||||
nonBlockClient,
|
nonBlockClient,
|
||||||
retryClient,
|
|
||||||
tarConfClient,
|
tarConfClient,
|
||||||
targetClient,
|
targetClient,
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user