close grpc connections during errors
This commit is contained in:
@@ -19,7 +19,7 @@ var (
|
|||||||
grpcClientsLock sync.Mutex
|
grpcClientsLock sync.Mutex
|
||||||
)
|
)
|
||||||
|
|
||||||
func init(){
|
func init() {
|
||||||
http.DefaultTransport.(*http.Transport).MaxIdleConnsPerHost = 100
|
http.DefaultTransport.(*http.Transport).MaxIdleConnsPerHost = 100
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -81,6 +81,7 @@ func WithCachedGrpcClient(ctx context.Context, fn func(*grpc.ClientConn) error,
|
|||||||
grpcClientsLock.Lock()
|
grpcClientsLock.Lock()
|
||||||
delete(grpcClients, address)
|
delete(grpcClients, address)
|
||||||
grpcClientsLock.Unlock()
|
grpcClientsLock.Unlock()
|
||||||
|
grpcConnection.Close()
|
||||||
}
|
}
|
||||||
|
|
||||||
return err
|
return err
|
||||||
|
|||||||
Reference in New Issue
Block a user