Skip to content

Commit

Permalink
feat: making use of the updated instrumentedsql version (#2713)
Browse files Browse the repository at this point in the history
  • Loading branch information
dadrus committed Sep 3, 2021
1 parent 1248553 commit 0a9df15
Show file tree
Hide file tree
Showing 3 changed files with 301 additions and 13 deletions.
1 change: 0 additions & 1 deletion driver/registry_sql.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ func (m *RegistrySQL) Init(ctx context.Context) error {
if m.Tracer(ctx).IsLoaded() {
opts = []instrumentedsql.Opt{
instrumentedsql.WithTracer(opentracing.NewTracer(true)),
instrumentedsql.WithOmitArgs(),
}
}

Expand Down
21 changes: 10 additions & 11 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,16 @@ module github.com/ory/hydra

go 1.16

replace github.com/mattn/go-sqlite3 => github.com/mattn/go-sqlite3 v1.14.7-0.20210414154423-1157a4212dcb

replace github.com/seatgeek/logrus-gelf-formatter => github.com/zepatrik/logrus-gelf-formatter v0.0.0-20210305135027-b8b3731dba10

replace github.com/dgrijalva/jwt-go => github.com/form3tech-oss/jwt-go v3.2.1+incompatible

replace github.com/gogo/protobuf => github.com/gogo/protobuf v1.3.2

replace github.com/gobuffalo/packr => github.com/gobuffalo/packr v1.30.1

replace github.com/oleiade/reflections => github.com/oleiade/reflections v1.0.1
replace (
github.com/mattn/go-sqlite3 => github.com/mattn/go-sqlite3 v1.14.7-0.20210414154423-1157a4212dcb
github.com/seatgeek/logrus-gelf-formatter => github.com/zepatrik/logrus-gelf-formatter v0.0.0-20210305135027-b8b3731dba10
github.com/dgrijalva/jwt-go => github.com/form3tech-oss/jwt-go v3.2.1+incompatible
github.com/gogo/protobuf => github.com/gogo/protobuf v1.3.2
github.com/gobuffalo/packr => github.com/gobuffalo/packr v1.30.1
github.com/oleiade/reflections => github.com/oleiade/reflections v1.0.1
github.com/luna-duclos/instrumentedsql => github.com/ory/instrumentedsql v1.2.0
github.com/luna-duclos/instrumentedsql/opentracing => github.com/ory/instrumentedsql/opentracing v0.0.0-20210903114257-c8963b546c5c
)

require (
github.com/cenkalti/backoff/v3 v3.0.0
Expand Down

0 comments on commit 0a9df15

Please sign in to comment.