Skip to content

Commit

Permalink
vendor: update redis imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Aeneas Rekkas (arekkas) committed Apr 14, 2017
1 parent c405d86 commit 9ee5e3c
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 17 deletions.
2 changes: 1 addition & 1 deletion client/manager_redis.go
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/ory-am/hydra/pkg"
"github.com/pborman/uuid"
"github.com/pkg/errors"
"gopkg.in/redis.v5"
"github.com/go-redis/redis"
)

type RedisManager struct {
Expand Down
2 changes: 1 addition & 1 deletion config/backend_connections.go
Expand Up @@ -17,7 +17,7 @@ import (
"github.com/pkg/errors"
"github.com/spf13/viper"
r "gopkg.in/gorethink/gorethink.v3"
"gopkg.in/redis.v5"
"github.com/go-redis/redis"
"strings"
)

Expand Down
12 changes: 2 additions & 10 deletions glide.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions glide.yaml
Expand Up @@ -59,8 +59,8 @@ import:
- clientcredentials
- package: gopkg.in/dancannon/gorethink.v2
version: ~3.0.0
- package: gopkg.in/redis.v5
version: ^5.1.2
- package: github.com/go-redis/redis
version: ^6.1.3
- package: gopkg.in/tylerb/graceful.v1
version: ^1.2.13
- package: gopkg.in/yaml.v2
Expand Down
2 changes: 1 addition & 1 deletion integration/docker.go
Expand Up @@ -10,7 +10,7 @@ import (
"github.com/jmoiron/sqlx"
_ "github.com/lib/pq"
"gopkg.in/ory-am/dockertest.v3"
"gopkg.in/redis.v5"
"github.com/go-redis/redis"
)

var resources []*dockertest.Resource
Expand Down
2 changes: 1 addition & 1 deletion jwk/manager_redis.go
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/ory-am/hydra/pkg"
"github.com/pkg/errors"
"github.com/square/go-jose"
"gopkg.in/redis.v5"
"github.com/go-redis/redis"
)

type RedisManager struct {
Expand Down
2 changes: 1 addition & 1 deletion oauth2/fosite_store_redis.go
Expand Up @@ -10,7 +10,7 @@ import (
"github.com/ory-am/hydra/client"
"github.com/pkg/errors"
"golang.org/x/net/context"
"gopkg.in/redis.v5"
"github.com/go-redis/redis"
)

type FositeRedisStore struct {
Expand Down

0 comments on commit 9ee5e3c

Please sign in to comment.