1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-06-03 09:10:10 +02:00

close grpc connections during errors

This commit is contained in:
Chris Lu 2019-04-11 09:27:05 -07:00
parent db1360c36a
commit e11e127d91

View file

@ -19,7 +19,7 @@ var (
grpcClientsLock sync.Mutex
)
func init(){
func init() {
http.DefaultTransport.(*http.Transport).MaxIdleConnsPerHost = 100
}
@ -81,6 +81,7 @@ func WithCachedGrpcClient(ctx context.Context, fn func(*grpc.ClientConn) error,
grpcClientsLock.Lock()
delete(grpcClients, address)
grpcClientsLock.Unlock()
grpcConnection.Close()
}
return err