Skip to content

Commit

Permalink
Merge pull request #54 from patcon/patch-1
Browse files Browse the repository at this point in the history
#52 update redis imports [redux]
  • Loading branch information
matryer authored Feb 10, 2019
2 parents 4293ad8 + 9f82589 commit 660007f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go:
- 1.11.x

before_install:
- go get github.com/golang/lint/golint
- go get golang.org/x/lint/golint
- go get honnef.co/go/tools/cmd/megacheck

# install nsq
Expand Down
2 changes: 1 addition & 1 deletion queues/redis/options.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package redis

import "gopkg.in/redis.v3"
import "github.com/go-redis/redis"

type Options struct {
Client *redis.Client
Expand Down
2 changes: 1 addition & 1 deletion queues/redis/redis.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"sync"
"time"

"github.com/go-redis/redis"
"github.com/matryer/vice"
"gopkg.in/redis.v3"
)

// Transport is a vice.Transport for redis.
Expand Down

0 comments on commit 660007f

Please sign in to comment.