summaryrefslogtreecommitdiff
path: root/vendor/github.com/uber/jaeger-client-go/constants.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-06-15 10:36:44 -0400
committerGitHub <noreply@github.com>2020-06-15 10:36:44 -0400
commit4fe573edfc47a42c7e587311adc21a49eac23424 (patch)
tree635b7d84cc4b5f60cbb8df9a89f32b0b589f2815 /vendor/github.com/uber/jaeger-client-go/constants.go
parent230cd2525f110d507c1bf2195f04649f03218c8f (diff)
parentea75042fb3784654f5ae7a1c5bb68eda450a0798 (diff)
downloadpodman-4fe573edfc47a42c7e587311adc21a49eac23424.tar.gz
podman-4fe573edfc47a42c7e587311adc21a49eac23424.tar.bz2
podman-4fe573edfc47a42c7e587311adc21a49eac23424.zip
Merge pull request #6606 from containers/dependabot/go_modules/github.com/uber/jaeger-client-go-2.24.0incompatible
Bump github.com/uber/jaeger-client-go from 2.23.1+incompatible to 2.24.0+incompatible
Diffstat (limited to 'vendor/github.com/uber/jaeger-client-go/constants.go')
-rw-r--r--vendor/github.com/uber/jaeger-client-go/constants.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/github.com/uber/jaeger-client-go/constants.go b/vendor/github.com/uber/jaeger-client-go/constants.go
index 1f8578fbd..feaf344ad 100644
--- a/vendor/github.com/uber/jaeger-client-go/constants.go
+++ b/vendor/github.com/uber/jaeger-client-go/constants.go
@@ -22,7 +22,7 @@ import (
const (
// JaegerClientVersion is the version of the client library reported as Span tag.
- JaegerClientVersion = "Go-2.23.1"
+ JaegerClientVersion = "Go-2.24.0"
// JaegerClientVersionTagKey is the name of the tag used to report client version.
JaegerClientVersionTagKey = "jaeger.version"
@@ -102,5 +102,5 @@ const (
var (
// DefaultSamplingServerURL is the default url to fetch sampling config from, via http
- DefaultSamplingServerURL = fmt.Sprintf("http://localhost:%d/sampling", DefaultSamplingServerPort)
+ DefaultSamplingServerURL = fmt.Sprintf("http://127.0.0.1:%d/sampling", DefaultSamplingServerPort)
)