(ctx context.Context)
| 645 | } |
| 646 | |
| 647 | func (e *Handler) getNodeKeyManagerClient(ctx context.Context) encryption.NodeKeyManagerClient { |
| 648 | return encryption.NewNodeKeyManagerClient(grpc.ResolveConn(ctx, common.ServiceEncKeyGRPC)) |
| 649 | } |
| 650 | |
| 651 | func (e *Handler) recomputeNodePlainSize(ctx context.Context, node *tree.Node, dsName string) (int64, error) { |
| 652 | nodeEncryptionClient := encryption.NewNodeKeyManagerClient(grpc.ResolveConn(ctx, common.ServiceEncKeyGRPC, grpc.WithSilentNotFound())) |
no test coverage detected