From 92658b05a8bee8628fd3be232a86a62d1640d738 Mon Sep 17 00:00:00 2001 From: Ryan Russell Date: Thu, 15 Sep 2022 04:04:29 -0500 Subject: [PATCH] =?UTF-8?q?refactor(volume=5Fgrpc=5Fclient=5Fto=5Fmaster):?= =?UTF-8?q?=20`grpcConection`=20->=20`grpcConne=E2=80=A6=20(#3690)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit refactor(volume_grpc_client_to_master): `grpcConection` -> `grpcConnection` Signed-off-by: Ryan Russell Signed-off-by: Ryan Russell --- weed/server/volume_grpc_client_to_master.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/weed/server/volume_grpc_client_to_master.go b/weed/server/volume_grpc_client_to_master.go index 3849eac19..49058c5b6 100644 --- a/weed/server/volume_grpc_client_to_master.go +++ b/weed/server/volume_grpc_client_to_master.go @@ -94,13 +94,13 @@ func (vs *VolumeServer) doHeartbeat(masterAddress pb.ServerAddress, grpcDialOpti ctx, cancel := context.WithCancel(context.Background()) defer cancel() - grpcConection, err := pb.GrpcDial(ctx, masterAddress.ToGrpcAddress(), false, grpcDialOption) + grpcConnection, err := pb.GrpcDial(ctx, masterAddress.ToGrpcAddress(), false, grpcDialOption) if err != nil { return "", fmt.Errorf("fail to dial %s : %v", masterAddress, err) } - defer grpcConection.Close() + defer grpcConnection.Close() - client := master_pb.NewSeaweedClient(grpcConection) + client := master_pb.NewSeaweedClient(grpcConnection) stream, err := client.SendHeartbeat(ctx) if err != nil { glog.V(0).Infof("SendHeartbeat to %s: %v", masterAddress, err)