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:
authorSami Hiltunen <shiltunen@gitlab.com>2020-10-14 13:38:18 +0300
committerSami Hiltunen <shiltunen@gitlab.com>2020-10-14 13:38:18 +0300
commite770af3bbb19c1108780147f8b2dbf65cf685cbe (patch)
tree8f41c536ee7690ee63b568c22970a99fe8f26603
parent34674109637c211a1a9d153de83ac58ce51c7dec (diff)
rename CatFile to ReadObject on UnimplementedRepository
Fixes a semantice merge conflict with a method renaming.
-rw-r--r--internal/git/repository.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/git/repository.go b/internal/git/repository.go
index e8c5d743d..6ad68b951 100644
--- a/internal/git/repository.go
+++ b/internal/git/repository.go
@@ -114,7 +114,7 @@ func (UnimplementedRepo) WriteBlob(context.Context, string, io.Reader) (string,
return "", ErrUnimplemented
}
-func (UnimplementedRepo) CatFile(context.Context, string) ([]byte, error) {
+func (UnimplementedRepo) ReadObject(context.Context, string) ([]byte, error) {
return nil, ErrUnimplemented
}