diff options
author | Valery Piashchynski <[email protected]> | 2020-05-20 11:13:35 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-05-20 11:13:35 +0300 |
commit | c51104bc7bc369e6e4dacc985ccb7dbf6b626ef6 (patch) | |
tree | 76bfe7524046a9db860fa98a22f10c1715a84520 | |
parent | 950b1ecbded8a21aca3eca68b8c6728dec2cca4d (diff) |
fix test failings
-rw-r--r-- | Dockerfile | 3 | ||||
-rw-r--r-- | cmd/rr/main.go | 4 | ||||
-rw-r--r-- | service/http/request.go | 13 |
3 files changed, 7 insertions, 13 deletions
@@ -5,7 +5,8 @@ COPY . /src WORKDIR /src RUN set -x \ - && apk add --no-cache bash git \ + && apt-get update -y \ + && apt-get install -y bash git \ && go version \ && bash ./build.sh \ && test -f ./.rr.yaml diff --git a/cmd/rr/main.go b/cmd/rr/main.go index 72498017..54a1f060 100644 --- a/cmd/rr/main.go +++ b/cmd/rr/main.go @@ -43,10 +43,6 @@ import ( ) func main() { - - rr.Container.Register(logger.ID, &logrus.ConfigProvider{}) - rr.Container.Register(config.ID, &cobra.ConfigPrivider{}) - rr.Container.Register(env.ID, &env.Service{}) rr.Container.Register(rpc.ID, &rpc.Service{}) rr.Container.Register(http.ID, &http.Service{}) diff --git a/service/http/request.go b/service/http/request.go index 176279df..8da5440f 100644 --- a/service/http/request.go +++ b/service/http/request.go @@ -2,16 +2,16 @@ package http import ( "fmt" - json "github.com/json-iterator/go" - "github.com/sirupsen/logrus" - "github.com/spiral/roadrunner" - "github.com/spiral/roadrunner/service/http/attributes" "io/ioutil" - "log" "net" "net/http" "net/url" "strings" + + json "github.com/json-iterator/go" + "github.com/sirupsen/logrus" + "github.com/spiral/roadrunner" + "github.com/spiral/roadrunner/service/http/attributes" ) const ( @@ -95,9 +95,6 @@ func NewRequest(r *http.Request, cfg *UploadsConfig) (req *Request, err error) { return req, err case contentMultipart: - b, _ := ioutil.ReadAll(r.Body) - log.Print(string(b)) - if err = r.ParseMultipartForm(defaultMaxMemory); err != nil { return nil, err } |