apply coding style

This commit is contained in:
Shelikhoo 2021-05-09 15:16:42 +01:00
parent 7b721e1a6f
commit fb6e449572
No known key found for this signature in database
GPG Key ID: C4D5E79D22B25316
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ func getGrpcClient(ctx context.Context, dest net.Destination, dialOption grpc.Di
globalDialerMap = make(map[net.Destination]*grpc.ClientConn)
}
//TODO Should support chain proxy to the same destination
// TODO Should support chain proxy to the same destination
if client, found := globalDialerMap[dest]; found && client.GetState() != connectivity.Shutdown {
return client, nil
}