aboutsummaryrefslogtreecommitdiff
path: root/weed/util
diff options
context:
space:
mode:
Diffstat (limited to 'weed/util')
-rw-r--r--weed/util/grpc_client_server.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/weed/util/grpc_client_server.go b/weed/util/grpc_client_server.go
index 5c08538dc..c35a13970 100644
--- a/weed/util/grpc_client_server.go
+++ b/weed/util/grpc_client_server.go
@@ -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