Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump github.com/klauspost/compress from 1.15.11 to 1.15.12 #285

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ require (

require (
github.com/andybalholm/brotli v1.0.4
github.com/klauspost/compress v1.15.11
github.com/klauspost/compress v1.15.12
github.com/simonmittag/procspy v0.0.4
)

Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -244,8 +244,8 @@ github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7V
github.com/k0kubun/go-ansi v0.0.0-20180517002512-3bf9e2903213/go.mod h1:vNUNkEQ1e29fT/6vq2aBdFsgNPmy8qMdSay1npru+Sw=
github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q=
github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=
github.com/klauspost/compress v1.15.11 h1:Lcadnb3RKGin4FYM/orgq0qde+nc15E5Cbqg4B9Sx9c=
github.com/klauspost/compress v1.15.11/go.mod h1:QPwzmACJjUTFsnSHH934V6woptycfrDDJnH7hvFVbGM=
github.com/klauspost/compress v1.15.12 h1:YClS/PImqYbn+UILDnqxQCZ3RehC9N318SU3kElDUEM=
github.com/klauspost/compress v1.15.12/go.mod h1:QPwzmACJjUTFsnSHH934V6woptycfrDDJnH7hvFVbGM=
github.com/kolo/xmlrpc v0.0.0-20200310150728-e0350524596b/go.mod h1:o03bZfuBwAXHetKXuInt4S7omeXUu62/A845kiycsSQ=
github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=
github.com/konsorten/go-windows-terminal-sequences v1.0.2/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=
Expand Down
12 changes: 6 additions & 6 deletions integration/connection/connection_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ func TestConnection_100ConcurrentTCPConnectionsUsingHTTP11(t *testing.T) {
ConcurrentHTTP11ConnectionsSucceed(100, t)
}

//this test covers all codes >=400 we just use 404 cause it's easy to evoke.
// this test covers all codes >=400 we just use 404 cause it's easy to evoke.
func TestConnection_404ResponseClosesDownstreamConnectionUsingHTTP11(t *testing.T) {
//step 1 we connect to j8a with net.dial
c, err := net.Dial("tcp", ":8080")
Expand Down Expand Up @@ -302,12 +302,12 @@ func ConcurrentHTTP11ConnectionsSucceed(total int, t *testing.T) {
// upstream resource configured within j8a.
func TestRuntime_CountResourceIps(t *testing.T) {
proc, _ := process.NewProcess(int32(os.Getpid()))
ad, _ := net.LookupIP("adyntest.com")
ips := map[string][]net.IP{"adyntest.com": ad}
ad, _ := net.LookupIP("jsonplaceholder.typicode.com")
ips := map[string][]net.IP{"jsonplaceholder.typicode.com": ad}

c := http.Client{Transport: &http.Transport{IdleConnTimeout: 0}}

resp, _ := c.Get("https://adyntest.com/about")
resp, _ := c.Get("https://jsonplaceholder.typicode.com/")
if resp != nil {
defer resp.Body.Close()
}
Expand All @@ -317,9 +317,9 @@ func TestRuntime_CountResourceIps(t *testing.T) {
rt := j8a.Runtime{
Config: j8a.Config{
Resources: map[string][]j8a.ResourceMapping{
"adyntest": []j8a.ResourceMapping{{
"jsonplaceholder.typicode.com": []j8a.ResourceMapping{{
URL: j8a.URL{
Host: "adyntest.com",
Host: "jsonplaceholder.typicode.com",
Port: 443,
},
}},
Expand Down