Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'proto/go/gitalypb/repository_grpc.pb.go')
-rw-r--r--proto/go/gitalypb/repository_grpc.pb.go43
1 files changed, 0 insertions, 43 deletions
diff --git a/proto/go/gitalypb/repository_grpc.pb.go b/proto/go/gitalypb/repository_grpc.pb.go
index b46e4ab3a..123f9dc79 100644
--- a/proto/go/gitalypb/repository_grpc.pb.go
+++ b/proto/go/gitalypb/repository_grpc.pb.go
@@ -55,10 +55,6 @@ type RepositoryServiceClient interface {
ObjectsSize(ctx context.Context, opts ...grpc.CallOption) (RepositoryService_ObjectsSizeClient, error)
// ObjectFormat determines the object format that is being used by the repository.
ObjectFormat(ctx context.Context, in *ObjectFormatRequest, opts ...grpc.CallOption) (*ObjectFormatResponse, error)
- // Deprecated: Do not use.
- // ApplyGitattributes writes the attributes from the given revision to info/attributes.
- // This RPC will be removed in 17.0.
- ApplyGitattributes(ctx context.Context, in *ApplyGitattributesRequest, opts ...grpc.CallOption) (*ApplyGitattributesResponse, error)
// FetchRemote fetches references from a remote repository into the local
// repository.
FetchRemote(ctx context.Context, in *FetchRemoteRequest, opts ...grpc.CallOption) (*FetchRemoteResponse, error)
@@ -276,16 +272,6 @@ func (c *repositoryServiceClient) ObjectFormat(ctx context.Context, in *ObjectFo
return out, nil
}
-// Deprecated: Do not use.
-func (c *repositoryServiceClient) ApplyGitattributes(ctx context.Context, in *ApplyGitattributesRequest, opts ...grpc.CallOption) (*ApplyGitattributesResponse, error) {
- out := new(ApplyGitattributesResponse)
- err := c.cc.Invoke(ctx, "/gitaly.RepositoryService/ApplyGitattributes", in, out, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
-}
-
func (c *repositoryServiceClient) FetchRemote(ctx context.Context, in *FetchRemoteRequest, opts ...grpc.CallOption) (*FetchRemoteResponse, error) {
out := new(FetchRemoteResponse)
err := c.cc.Invoke(ctx, "/gitaly.RepositoryService/FetchRemote", in, out, opts...)
@@ -1022,10 +1008,6 @@ type RepositoryServiceServer interface {
ObjectsSize(RepositoryService_ObjectsSizeServer) error
// ObjectFormat determines the object format that is being used by the repository.
ObjectFormat(context.Context, *ObjectFormatRequest) (*ObjectFormatResponse, error)
- // Deprecated: Do not use.
- // ApplyGitattributes writes the attributes from the given revision to info/attributes.
- // This RPC will be removed in 17.0.
- ApplyGitattributes(context.Context, *ApplyGitattributesRequest) (*ApplyGitattributesResponse, error)
// FetchRemote fetches references from a remote repository into the local
// repository.
FetchRemote(context.Context, *FetchRemoteRequest) (*FetchRemoteResponse, error)
@@ -1185,9 +1167,6 @@ func (UnimplementedRepositoryServiceServer) ObjectsSize(RepositoryService_Object
func (UnimplementedRepositoryServiceServer) ObjectFormat(context.Context, *ObjectFormatRequest) (*ObjectFormatResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method ObjectFormat not implemented")
}
-func (UnimplementedRepositoryServiceServer) ApplyGitattributes(context.Context, *ApplyGitattributesRequest) (*ApplyGitattributesResponse, error) {
- return nil, status.Errorf(codes.Unimplemented, "method ApplyGitattributes not implemented")
-}
func (UnimplementedRepositoryServiceServer) FetchRemote(context.Context, *FetchRemoteRequest) (*FetchRemoteResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method FetchRemote not implemented")
}
@@ -1413,24 +1392,6 @@ func _RepositoryService_ObjectFormat_Handler(srv interface{}, ctx context.Contex
return interceptor(ctx, in, info, handler)
}
-func _RepositoryService_ApplyGitattributes_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(ApplyGitattributesRequest)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(RepositoryServiceServer).ApplyGitattributes(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/gitaly.RepositoryService/ApplyGitattributes",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(RepositoryServiceServer).ApplyGitattributes(ctx, req.(*ApplyGitattributesRequest))
- }
- return interceptor(ctx, in, info, handler)
-}
-
func _RepositoryService_FetchRemote_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(FetchRemoteRequest)
if err := dec(in); err != nil {
@@ -2209,10 +2170,6 @@ var RepositoryService_ServiceDesc = grpc.ServiceDesc{
Handler: _RepositoryService_ObjectFormat_Handler,
},
{
- MethodName: "ApplyGitattributes",
- Handler: _RepositoryService_ApplyGitattributes_Handler,
- },
- {
MethodName: "FetchRemote",
Handler: _RepositoryService_FetchRemote_Handler,
},