Skip to content

Commit f846d23

Browse files
authored
Merge branch 'master' into sc-821/bad_eof_detection
2 parents aa0b052 + 9990e80 commit f846d23

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.deepsource.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ name = "go"
55
enabled = true
66

77
[analyzers.meta]
8-
import_root = "github.com/krakendio/httpcache"
8+
import_root = "github.com/krakend/httpcache"
99

1010
[[transformers]]
1111
name = "gofmt"
1212
enabled = true
1313

1414
[[transformers]]
1515
name = "gofumpt"
16-
enabled = true
16+
enabled = true

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ httpcache
44
This a fork of github.com/gregjones/httpcache which includes various fixes.
55
Original backends are removed since are not used by KrakenD.
66

7-
[![GoDoc](https://godoc.org/github.com/krakendio/httpcache?status.svg)](https://godoc.org/github.com/krakendio/httpcache)
7+
[![GoDoc](https://godoc.org/github.com/krakend/httpcache?status.svg)](https://godoc.org/github.com/krakend/httpcache)
88

99
Package httpcache provides a http.RoundTripper implementation that works as a mostly [RFC 7234](https://tools.ietf.org/html/rfc7234) compliant cache for http responses.
1010

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module github.com/krakendio/httpcache
1+
module github.com/krakend/httpcache
22

33
go 1.19

test/test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"bytes"
55
"testing"
66

7-
"github.com/krakendio/httpcache"
7+
"github.com/krakend/httpcache"
88
)
99

1010
// Cache excercises a httpcache.Cache implementation.

test/test_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package test_test
33
import (
44
"testing"
55

6-
"github.com/krakendio/httpcache"
7-
"github.com/krakendio/httpcache/test"
6+
"github.com/krakend/httpcache"
7+
"github.com/krakend/httpcache/test"
88
)
99

1010
func TestMemoryCache(t *testing.T) {

0 commit comments

Comments
 (0)