Skip to content
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.

Commit

Permalink
Switch from glide to dep
Browse files Browse the repository at this point in the history
Signed-off-by: Yuri Shkuro <[email protected]>
  • Loading branch information
Yuri Shkuro committed Jan 12, 2018
1 parent 5c0940e commit d46ad92
Show file tree
Hide file tree
Showing 7 changed files with 54 additions and 48 deletions.
43 changes: 43 additions & 0 deletions go/Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions go/Gopkg.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[[constraint]]
name = "github.com/opentracing/opentracing-go"
version = "^1.0.2"

[[constraint]]
name = "github.com/uber/jaeger-client-go"
version = "^2.9.0"
4 changes: 2 additions & 2 deletions go/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: install
install:
glide --version || go get github.com/Masterminds/glide
glide install
dep version || go get -u github.com/golang/dep/cmd/dep
dep ensure
2 changes: 1 addition & 1 deletion go/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
The tutorials are using CNCF Jaeger (https://github.com/jaegertracing/jaeger) as the tracing backend,
[see here](../README.md) how to install it in a Docker image.

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

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

Expand Down
35 changes: 0 additions & 35 deletions go/glide.lock

This file was deleted.

10 changes: 0 additions & 10 deletions go/glide.yaml

This file was deleted.

1 change: 1 addition & 0 deletions python/lib/tracing.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ def init_tracer(service):
'param': 1,
},
'logging': True,
'reporter_batch_size': 1,
},
service_name=service,
)
Expand Down

0 comments on commit d46ad92

Please sign in to comment.