-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Define import path in preparation of repository move to jaegertracing #408
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
return err | ||
} | ||
return nil | ||
return vFunc(request, traces) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These seem to be changes unrelated to this PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because go vet complained
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, there is a typo in jaegetracing
in the commit message
@@ -1,6 +1,7 @@ | |||
sudo: required | |||
|
|||
language: go | |||
go_import_path: github.com/uber/jaeger |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just so I'm on the same boat, why is this required?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
after the repo move the github path is going to be different, but all the imports in the code refer to uber/jaeger, so it won't build. This instruction tells Travis to relocate the repo to this path under GOPATH before building.
per https://github.com/uber/jaeger/issues/409