Skip to content
This repository was archived by the owner on Jul 31, 2023. It is now read-only.

Commit 3b8e272

Browse files
author
Bogdan Drutu
authored
Run command mod tiny (#1052)
* Run command mod tiny * Update google.golang.org/api and grpc * Remove thrift vendor. * Use the right import for thrift. * More cleanups and update versions. * Updagrade golang.
1 parent 5439521 commit 3b8e272

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+100
-7946
lines changed

appveyor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ environment:
1212

1313
install:
1414
- set PATH=%GOPATH%\bin;c:\go\bin;%PATH%
15+
- choco upgrade golang --version 1.11.5 # Temporary fix because of a go.sum bug in 1.11
1516
- go version
1617
- go env
1718

exporter/jaeger/agent.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
"io"
2020
"net"
2121

22-
"git.apache.org/thrift.git/lib/go/thrift"
22+
"github.com/apache/thrift/lib/go/thrift"
2323
gen "go.opencensus.io/exporter/jaeger/internal/gen-go/jaeger"
2424
)
2525

exporter/jaeger/internal/gen-go/jaeger/agent.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

exporter/jaeger/internal/gen-go/jaeger/collector-remote/collector-remote.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

exporter/jaeger/internal/gen-go/jaeger/jaeger-consts.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

exporter/jaeger/internal/gen-go/jaeger/jaeger.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

exporter/jaeger/jaeger.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"log"
2626
"net/http"
2727

28-
"git.apache.org/thrift.git/lib/go/thrift"
28+
"github.com/apache/thrift/lib/go/thrift"
2929
gen "go.opencensus.io/exporter/jaeger/internal/gen-go/jaeger"
3030
"go.opencensus.io/trace"
3131
"google.golang.org/api/support/bundler"

go.mod

Lines changed: 5 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,13 @@
11
module go.opencensus.io
22

33
require (
4-
cloud.google.com/go v0.34.0 // indirect
5-
git.apache.org/thrift.git v0.12.0
6-
github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973
7-
github.com/ghodss/yaml v1.0.0 // indirect
8-
github.com/golang/mock v1.2.0 // indirect
4+
github.com/apache/thrift v0.12.0
95
github.com/golang/protobuf v1.2.0
106
github.com/google/go-cmp v0.2.0
11-
github.com/grpc-ecosystem/grpc-gateway v1.6.2 // indirect
127
github.com/hashicorp/golang-lru v0.5.0
13-
github.com/matttproud/golang_protobuf_extensions v1.0.1
14-
github.com/openzipkin/zipkin-go v0.1.3
8+
github.com/openzipkin/zipkin-go v0.1.6
159
github.com/prometheus/client_golang v0.9.3-0.20190127221311-3c4408c8b829
16-
golang.org/x/lint v0.0.0-20181217174547-8f45f776aaf1 // indirect
17-
golang.org/x/net v0.0.0-20190125091013-d26f9f9a57f3
18-
golang.org/x/oauth2 v0.0.0-20181203162652-d668ce993890 // indirect
19-
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4
20-
golang.org/x/sys v0.0.0-20181218192612-074acd46bca6
21-
golang.org/x/text v0.3.0
22-
golang.org/x/tools v0.0.0-20181219222714-6e267b5cc78e // indirect
23-
google.golang.org/api v0.0.0-20181220000619-583d854617af
24-
google.golang.org/appengine v1.3.0 // indirect
25-
google.golang.org/genproto v0.0.0-20181219182458-5a97ab628bfb
26-
google.golang.org/grpc v1.17.0
27-
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
28-
gopkg.in/yaml.v2 v2.2.2 // indirect
29-
honnef.co/go/tools v0.0.0-20180920025451-e3ad64cb4ed3 // indirect
10+
golang.org/x/net v0.0.0-20190311183353-d8887717615a
11+
google.golang.org/api v0.2.0
12+
google.golang.org/grpc v1.19.0
3013
)

go.sum

Lines changed: 88 additions & 34 deletions
Large diffs are not rendered by default.

vendor/git.apache.org/thrift.git/LICENSE

Lines changed: 0 additions & 239 deletions
This file was deleted.

0 commit comments

Comments
 (0)