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 'client/upload_pack.go')
-rw-r--r--client/upload_pack.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/upload_pack.go b/client/upload_pack.go
index dcd48b6b1..41aede96a 100644
--- a/client/upload_pack.go
+++ b/client/upload_pack.go
@@ -28,7 +28,7 @@ func UploadPack(ctx context.Context, conn *grpc.ClientConn, stdin io.Reader, std
return stream.Send(&gitalypb.SSHUploadPackRequest{Stdin: p})
})
- return streamHandler(func() (stdoutStderrResponse, error) {
+ return StreamHandler(func() (StdoutStderrResponse, error) {
return stream.Recv()
}, func(errC chan error) {
_, errRecv := io.Copy(inWriter, stdin)