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 'internal/service/ref/list_new_blobs.go')
-rw-r--r--internal/service/ref/list_new_blobs.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/internal/service/ref/list_new_blobs.go b/internal/service/ref/list_new_blobs.go
index ff3dcd3a9..53acd16d5 100644
--- a/internal/service/ref/list_new_blobs.go
+++ b/internal/service/ref/list_new_blobs.go
@@ -6,11 +6,12 @@ import (
"regexp"
"strings"
+ "google.golang.org/grpc/codes"
+ "google.golang.org/grpc/status"
+
"gitlab.com/gitlab-org/gitaly-proto/go/gitalypb"
"gitlab.com/gitlab-org/gitaly/internal/git"
"gitlab.com/gitlab-org/gitaly/internal/git/catfile"
- "google.golang.org/grpc/codes"
- "google.golang.org/grpc/status"
)
func (s *server) ListNewBlobs(in *gitalypb.ListNewBlobsRequest, stream gitalypb.RefService_ListNewBlobsServer) error {