Skip to content

Commit

Permalink
Changed import path to mailgun/groupcache
Browse files Browse the repository at this point in the history
  • Loading branch information
thrawn01 committed Apr 10, 2019
1 parent 1ee6a96 commit a4f69dc
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: go
go_import_path: github.com/golang/groupcache
go_import_path: github.com/mailgun/groupcache

os: linux
dist: trusty
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
groupcache is a caching and cache-filling library, intended as a
replacement for memcached in many cases.

For API docs and examples, see http://godoc.org/github.com/golang/groupcache
For API docs and examples, see http://godoc.org/github.com/mailgun/groupcache

## Comparison to memcached

Expand Down
6 changes: 3 additions & 3 deletions groupcache.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ import (
"sync/atomic"
"time"

pb "github.com/golang/groupcache/groupcachepb"
"github.com/golang/groupcache/lru"
"github.com/golang/groupcache/singleflight"
pb "github.com/mailgun/groupcache/groupcachepb"
"github.com/mailgun/groupcache/lru"
"github.com/mailgun/groupcache/singleflight"
)

// A Getter loads data for a key.
Expand Down
4 changes: 2 additions & 2 deletions groupcache_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ import (

"github.com/golang/protobuf/proto"

pb "github.com/golang/groupcache/groupcachepb"
testpb "github.com/golang/groupcache/testpb"
pb "github.com/mailgun/groupcache/groupcachepb"
testpb "github.com/mailgun/groupcache/testpb"
)

var (
Expand Down
4 changes: 2 additions & 2 deletions http.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ import (
"strings"
"sync"

"github.com/golang/groupcache/consistenthash"
pb "github.com/golang/groupcache/groupcachepb"
"github.com/golang/protobuf/proto"
"github.com/mailgun/groupcache/consistenthash"
pb "github.com/mailgun/groupcache/groupcachepb"
)

const defaultBasePath = "/_groupcache/"
Expand Down
2 changes: 1 addition & 1 deletion peers.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ limitations under the License.
package groupcache

import (
pb "github.com/golang/groupcache/groupcachepb"
pb "github.com/mailgun/groupcache/groupcachepb"
)

// Context is an opaque value passed through calls to the
Expand Down

0 comments on commit a4f69dc

Please sign in to comment.