Skip to content

Commit d46ad92

Browse files
author
Yuri Shkuro
committed
Switch from glide to dep
Signed-off-by: Yuri Shkuro <[email protected]>
1 parent 5c0940e commit d46ad92

File tree

7 files changed

+54
-48
lines changed

7 files changed

+54
-48
lines changed

go/Gopkg.lock

+43
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/Gopkg.toml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[[constraint]]
2+
name = "github.com/opentracing/opentracing-go"
3+
version = "^1.0.2"
4+
5+
[[constraint]]
6+
name = "github.com/uber/jaeger-client-go"
7+
version = "^2.9.0"

go/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
.PHONY: install
22
install:
3-
glide --version || go get github.com/Masterminds/glide
4-
glide install
3+
dep version || go get -u github.com/golang/dep/cmd/dep
4+
dep ensure

go/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
The tutorials are using CNCF Jaeger (https://github.com/jaegertracing/jaeger) as the tracing backend,
66
[see here](../README.md) how to install it in a Docker image.
77

8-
This repository uses [glide](https://github.com/Masterminds/glide) to manage dependencies (installed automatically below).
8+
This repository uses Go's new [`dep`](https://github.com/golang/dep) tool to manage dependencies (installed automatically below).
99

1010
When you clone the tutorials repository, it should be located in the right place under `$GOPATH`:
1111

go/glide.lock

-35
This file was deleted.

go/glide.yaml

-10
This file was deleted.

python/lib/tracing.py

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ def init_tracer(service):
1313
'param': 1,
1414
},
1515
'logging': True,
16+
'reporter_batch_size': 1,
1617
},
1718
service_name=service,
1819
)

0 commit comments

Comments
 (0)