fix(pkg/hub): disable gzip compression for http requests

This commit is contained in:
Markus Pesch 2019-11-13 09:40:02 +01:00
parent 7e29d6f0aa
commit b6e52111e5
Signed by: volker.raschek
GPG Key ID: 852BCC170D81A982
2 changed files with 8 additions and 6 deletions

View File

@ -135,10 +135,15 @@ func PatchRepository(repository *types.Repository, token *types.Token) (*types.R
if err != nil {
return nil, fmt.Errorf("Can not create http request to update file: %v", err)
}
req.Header.Add("Authorization", fmt.Sprintf("JWT %v", token.Token))
// Disable gzip compression:
// - https://stackoverflow.com/questions/33469723/go-how-to-control-gzip-compression-when-sending-http-request
req.Header.Set("Accept-Encoding", "identity")
req.Header.Set("Authorization", fmt.Sprintf("JWT %v", token.Token))
req.Header.Set("Content-Length", strconv.Itoa(len(data.Encode())))
//req.Header.Add("Content-Type", "application/json")
req.Header.Add("Content-Length", strconv.Itoa(len(data.Encode())))
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
resp, err := client.Do(req)
if err != nil {

View File

@ -7,13 +7,10 @@ import (
"github.com/stretchr/testify/require"
"github.com/volker-raschek/docker-hub-description-updater/pkg/hub"
"github.com/volker-raschek/docker-hub-description-updater/pkg/types"
flogger "github.com/volker-raschek/go-logger/pkg/logger"
)
func TestPatchRepository(t *testing.T) {
hub.SetLogger(flogger.NewDefaultLogger(flogger.LogLevelDebug))
dockerHubUser := os.Getenv("REGISTRY_USER")
if len(dockerHubUser) <= 0 {
t.Fatalf("Environment variable REGISTRY_USER is empty")