Commit 6f80b287 authored by Jérome Perrin's avatar Jérome Perrin Committed by Alain Takoudjou

format code with make fmt

parent d90ce165
...@@ -3,11 +3,6 @@ package api ...@@ -3,11 +3,6 @@ package api
//"gitlab.com/gitlab-org/gitlab-workhorse/internal/badgateway" //"gitlab.com/gitlab-org/gitlab-workhorse/internal/badgateway"
import ( import (
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
proxypkg "gitlab.com/gitlab-org/gitlab-workhorse/internal/proxy"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/senddata"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/sendfile"
"gitlab.com/gitlab-org/gitaly/proto/go/gitalypb"
"fmt" "fmt"
"net/http" "net/http"
"net/http/httptest" "net/http/httptest"
...@@ -15,6 +10,13 @@ import ( ...@@ -15,6 +10,13 @@ import (
"strings" "strings"
"sync" "sync"
"time" "time"
"gitlab.com/gitlab-org/gitaly/proto/go/gitalypb"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
proxypkg "gitlab.com/gitlab-org/gitlab-workhorse/internal/proxy"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/senddata"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/sendfile"
) )
// Reply from auth backend, e.g. for "download from repo" authorization request // Reply from auth backend, e.g. for "download from repo" authorization request
......
...@@ -6,8 +6,6 @@ ...@@ -6,8 +6,6 @@
package git package git
import ( import (
"gitlab.com/gitlab-org/gitlab-workhorse/internal/api"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"bufio" "bufio"
"errors" "errors"
"fmt" "fmt"
...@@ -15,11 +13,14 @@ import ( ...@@ -15,11 +13,14 @@ import (
"log" "log"
"net/http" "net/http"
"net/url" "net/url"
"os"
"os/exec"
"regexp" "regexp"
"strings" "strings"
"os/exec"
"syscall" "syscall"
"os"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/api"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
) )
// HTTP handler for `.../raw/<ref>/path` // HTTP handler for `.../raw/<ref>/path`
...@@ -75,7 +76,6 @@ func handleGetBlobRaw(a *api.API, w http.ResponseWriter, r *http.Request, repoPa ...@@ -75,7 +76,6 @@ func handleGetBlobRaw(a *api.API, w http.ResponseWriter, r *http.Request, repoPa
emitBlob(w, p, refpath, r) emitBlob(w, p, refpath, r)
} }
// Put back gitCommand function which was removed in // Put back gitCommand function which was removed in
var execCommand = exec.Command var execCommand = exec.Command
...@@ -101,7 +101,6 @@ func gitCommand(glId string, glRepository string, name string, args ...string) * ...@@ -101,7 +101,6 @@ func gitCommand(glId string, glRepository string, name string, args ...string) *
return cmd return cmd
} }
// Emit content of blob located at <ref>/path (jointly denoted as 'refpath') to output // Emit content of blob located at <ref>/path (jointly denoted as 'refpath') to output
func emitBlob(w http.ResponseWriter, repopath string, refpath string, r *http.Request) { func emitBlob(w http.ResponseWriter, repopath string, refpath string, r *http.Request) {
// Communicate with `git cat-file --batch` trying refs from longest // Communicate with `git cat-file --batch` trying refs from longest
......
...@@ -237,7 +237,7 @@ func configureRoutes(u *upstream) { ...@@ -237,7 +237,7 @@ func configureRoutes(u *upstream) {
u.route("PUT", gitProjectPattern+`gitlab-lfs/objects/([0-9a-f]{64})/([0-9]+)\z`, lfs.PutStore(api, signingProxy, preparers.lfs), withMatcher(isContentType("application/octet-stream"))), u.route("PUT", gitProjectPattern+`gitlab-lfs/objects/([0-9a-f]{64})/([0-9]+)\z`, lfs.PutStore(api, signingProxy, preparers.lfs), withMatcher(isContentType("application/octet-stream"))),
// Raw blobs // Raw blobs
route("GET", projectPattern + `raw/`, git.GetBlobRaw(api, u.RepoPath)), route("GET", projectPattern+`raw/`, git.GetBlobRaw(api, u.RepoPath)),
// CI Artifacts // CI Artifacts
u.route("POST", apiPattern+`v4/jobs/[0-9]+/artifacts\z`, contentEncodingHandler(artifacts.UploadArtifacts(api, signingProxy, preparers.artifacts))), u.route("POST", apiPattern+`v4/jobs/[0-9]+/artifacts\z`, contentEncodingHandler(artifacts.UploadArtifacts(api, signingProxy, preparers.artifacts))),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment