Skip to content

Commit

Permalink
[TT-5307] update jaeger-client-go (#4049)
Browse files Browse the repository at this point in the history
* update jaeger-client-go to next minor

[changelog]
internal: update jaeger-client-go to next minor

(cherry picked from commit e7d134e)
  • Loading branch information
jeffy-mathew authored and Tyk Bot committed May 13, 2022
1 parent b47d8bb commit 9d749bc
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 5 deletions.
2 changes: 2 additions & 0 deletions config/testdata/expect.env.jaeger.json
Expand Up @@ -23,6 +23,8 @@
"rpc_metrics": false,
"sampler": {
"maxOperations": 0,
"options": [
],
"param": 0,
"samplingRefreshInterval": "0s",
"samplingServerURL": "",
Expand Down
2 changes: 2 additions & 0 deletions config/testdata/expect.jaeger.json
Expand Up @@ -23,6 +23,8 @@
"rpc_metrics": false,
"sampler": {
"maxOperations": 0,
"options": [
],
"param": 1,
"samplingRefreshInterval": "0s",
"samplingServerURL": "",
Expand Down
2 changes: 2 additions & 0 deletions config/testdata/jaeger.json
Expand Up @@ -27,6 +27,8 @@
"rpc_metrics": false,
"sampler": {
"maxOperations": 0,
"options": [
],
"param": 1,
"samplingRefreshInterval": "0s",
"samplingServerURL": "",
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Expand Up @@ -67,7 +67,7 @@ require (
github.com/spf13/afero v1.6.0
github.com/square/go-jose v2.4.1+incompatible
github.com/stretchr/testify v1.7.0
github.com/uber/jaeger-client-go v2.19.0+incompatible
github.com/uber/jaeger-client-go v2.20.0+incompatible
github.com/valyala/fasthttp v1.15.1
github.com/x-cray/logrus-prefixed-formatter v0.5.2
github.com/xeipuuv/gojsonschema v1.2.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Expand Up @@ -843,10 +843,10 @@ github.com/tidwall/pretty v1.2.0/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhso
github.com/tidwall/sjson v1.0.4 h1:UcdIRXff12Lpnu3OLtZvnc03g4vH2suXDXhBwBqmzYg=
github.com/tidwall/sjson v1.0.4/go.mod h1:bURseu1nuBkFpIES5cz6zBtjmYeOQmEESshn7VpF15Y=
github.com/tinylib/msgp v1.0.2/go.mod h1:+d+yLhGm8mzTaHzB+wgMYrodPfmZrzkirds8fDWklFE=
github.com/uber-go/atomic v1.4.0 h1:yOuPqEq4ovnhEjpHmfFwsqBXDYbQeT6Nb0bwD6XnD5o=
github.com/uber-go/atomic v1.4.0/go.mod h1:/Ct5t2lcmbJ4OSe/waGBoaVvVqtO0bmtfVNex1PFV8g=
github.com/uber/jaeger-client-go v2.19.0+incompatible h1:pbwbYfHUoaase0oPQOdZ1GcaUjImYGimUXSQ/+8+Z8Q=
github.com/uber/jaeger-client-go v2.19.0+incompatible/go.mod h1:WVhlPFC8FDjOFMMWRy2pZqQJSXxYSwNYOkTr/Z6d3Kk=
github.com/uber/jaeger-client-go v2.20.0+incompatible h1:ttG9wKdl2ikV/BGOtu+eb+VPp+R7jMeuM177Ihs5Fdc=
github.com/uber/jaeger-client-go v2.20.0+incompatible/go.mod h1:WVhlPFC8FDjOFMMWRy2pZqQJSXxYSwNYOkTr/Z6d3Kk=
github.com/uber/jaeger-lib v2.2.0+incompatible h1:MxZXOiR2JuoANZ3J6DE/U0kSFv/eJ/GfSYVCjK7dyaw=
github.com/uber/jaeger-lib v2.2.0+incompatible/go.mod h1:ComeNDZlWwrWnDv8aPp0Ba6+uUTzImX/AauajbLI56U=
github.com/ugorji/go v1.1.7 h1:/68gy2h+1mWMrwZFeD1kQialdSzAb432dtpeJ42ovdo=
Expand Down
5 changes: 3 additions & 2 deletions trace/jaeger/config_test.go
Expand Up @@ -19,8 +19,9 @@ func TestLoad(t *testing.T) {
cfg := config.Configuration{
ServiceName: "tyk-gateway",
Sampler: &config.SamplerConfig{
Type: jaeger.SamplerTypeConst,
Param: 1,
Type: jaeger.SamplerTypeConst,
Param: 1,
Options: []jaeger.SamplerOption{},
},
Reporter: &config.ReporterConfig{
LogSpans: true,
Expand Down

0 comments on commit 9d749bc

Please sign in to comment.