Skip to content

Commit

Permalink
vendor: update gorethink imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Aeneas Rekkas (arekkas) committed Apr 14, 2017
1 parent d23b0a4 commit c405d86
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion client/manager_rethinkdb.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"github.com/pborman/uuid"
"github.com/pkg/errors"
"golang.org/x/net/context"
r "gopkg.in/dancannon/gorethink.v2"
r "gopkg.in/gorethink/gorethink.v3"
)

type RethinkManager struct {
Expand Down
2 changes: 1 addition & 1 deletion client/manager_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package client_test

import (
r "gopkg.in/dancannon/gorethink.v2"
r "gopkg.in/gorethink/gorethink.v3"
"log"
"net/http/httptest"
"net/url"
Expand Down
2 changes: 1 addition & 1 deletion cmd/server/handler_client_factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/ory-am/hydra/config"
"github.com/ory-am/hydra/herodot"
"golang.org/x/net/context"
r "gopkg.in/dancannon/gorethink.v2"
r "gopkg.in/gorethink/gorethink.v3"
)

func newClientManager(c *config.Config) client.Manager {
Expand Down
2 changes: 1 addition & 1 deletion cmd/server/handler_jwk_factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/ory-am/hydra/jwk"
"github.com/square/go-jose"
"golang.org/x/net/context"
r "gopkg.in/dancannon/gorethink.v2"
r "gopkg.in/gorethink/gorethink.v3"
)

func injectJWKManager(c *config.Config) {
Expand Down
2 changes: 1 addition & 1 deletion cmd/server/handler_oauth2_factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"github.com/ory-am/hydra/pkg"
"github.com/pkg/errors"
"golang.org/x/net/context"
r "gopkg.in/dancannon/gorethink.v2"
r "gopkg.in/gorethink/gorethink.v3"
)

func injectFositeStore(c *config.Config, clients client.Manager) {
Expand Down
2 changes: 1 addition & 1 deletion config/backend_connections.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"github.com/ory-am/hydra/pkg"
"github.com/pkg/errors"
"github.com/spf13/viper"
r "gopkg.in/dancannon/gorethink.v2"
r "gopkg.in/gorethink/gorethink.v3"
"gopkg.in/redis.v5"
"strings"
)
Expand Down
2 changes: 1 addition & 1 deletion config/backend_connections_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"

r "gopkg.in/dancannon/gorethink.v2"
r "gopkg.in/gorethink/gorethink.v3"
)

var cert1 = `-----BEGIN CERTIFICATE-----
Expand Down
2 changes: 1 addition & 1 deletion config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
"golang.org/x/net/context"
"golang.org/x/oauth2"
"golang.org/x/oauth2/clientcredentials"
r "gopkg.in/dancannon/gorethink.v2"
r "gopkg.in/gorethink/gorethink.v3"
"gopkg.in/yaml.v2"
)

Expand Down
2 changes: 1 addition & 1 deletion glide.lock

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

2 changes: 1 addition & 1 deletion integration/docker.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package integration

import (
r "gopkg.in/dancannon/gorethink.v2"
r "gopkg.in/gorethink/gorethink.v3"
"log"
"time"

Expand Down
2 changes: 1 addition & 1 deletion jwk/manager_rethinkdb.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"github.com/pkg/errors"
"github.com/square/go-jose"
"golang.org/x/net/context"
r "gopkg.in/dancannon/gorethink.v2"
r "gopkg.in/gorethink/gorethink.v3"
)

type RethinkManager struct {
Expand Down
2 changes: 1 addition & 1 deletion jwk/manager_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"github.com/square/go-jose"
"github.com/stretchr/testify/assert"
"golang.org/x/net/context"
r "gopkg.in/dancannon/gorethink.v2"
r "gopkg.in/gorethink/gorethink.v3"
"io"
"log"
"net/http"
Expand Down
2 changes: 1 addition & 1 deletion oauth2/fosite_store_rethinkdb.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"github.com/ory-am/hydra/pkg"
"github.com/pkg/errors"
"golang.org/x/net/context"
r "gopkg.in/dancannon/gorethink.v2"
r "gopkg.in/gorethink/gorethink.v3"
)

type RDBItems map[string]*RdbSchema
Expand Down
2 changes: 1 addition & 1 deletion oauth2/fosite_store_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"golang.org/x/net/context"
r "gopkg.in/dancannon/gorethink.v2"
r "gopkg.in/gorethink/gorethink.v3"
)

var rethinkManager *FositeRethinkDBStore
Expand Down

0 comments on commit c405d86

Please sign in to comment.