diff options
author | David Kim <dkim@gitlab.com> | 2020-04-08 11:02:05 +0930 |
---|---|---|
committer | David Kim <dkim@gitlab.com> | 2020-04-08 11:02:05 +0930 |
commit | 37b929f9e2dea90d53f19618294b0cce5c28071b (patch) | |
tree | 1eb7e5ca798d28f7955c109e015393351dff1898 /internal/command/uploadarchive | |
parent | a9d9243401d887083477079192eb30452f7ccfc3 (diff) | |
download | gitlab-shell-37b929f9e2dea90d53f19618294b0cce5c28071b.tar.gz |
Remove unnecessary command argument
Diffstat (limited to 'internal/command/uploadarchive')
-rw-r--r-- | internal/command/uploadarchive/gitalycall.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/command/uploadarchive/gitalycall.go b/internal/command/uploadarchive/gitalycall.go index 40a5359..1b792cb 100644 --- a/internal/command/uploadarchive/gitalycall.go +++ b/internal/command/uploadarchive/gitalycall.go @@ -27,7 +27,7 @@ func (c *Command) performGitalyCall(response *accessverifier.Response) error { ctx, cancel := context.WithCancel(ctx) defer cancel() - gc.LogExecution("git-upload-archive", request.Repository, response, "") + gc.LogExecution(request.Repository, response, "") rw := c.ReadWriter return client.UploadArchive(ctx, conn, rw.In, rw.Out, rw.ErrOut, request) |