[#117] rpc: Allow to specify custom gRPC dialer
All checks were successful
DCO action / DCO (pull_request) Successful in 47s
Tests and linters / Tests with -race (pull_request) Successful in 1m19s
Tests and linters / Tests (pull_request) Successful in 1m30s
Tests and linters / Lint (pull_request) Successful in 3m40s

After grpc upgrade there is no DialContext call.
So connection is not actually established after created.

Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
This commit is contained in:
Dmitrii Stepanov 2024-09-13 17:18:53 +03:00
parent c9782cf3ef
commit 6a81f3d404
4 changed files with 25 additions and 10 deletions

View file

@ -37,7 +37,6 @@ func (c *cfg) initDefault() {
c.dialTimeout = defaultDialTimeout
c.rwTimeout = defaultRWTimeout
c.grpcDialOpts = []grpc.DialOption{
grpc.WithBlock(),
grpc.WithTransportCredentials(insecure.NewCredentials()),
}
}