-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
Zipkin: Allow SetTag even when the CS annotation is missing (#1414) #1418
Zipkin: Allow SetTag even when the CS annotation is missing (#1414) #1418
Conversation
clguiman
commented
Aug 9, 2017
- Removed the check for CS annotation in ZipkinSpan::SetTag
- Removed ZipkinSpan::hasCSAnnotation (SetTag was the only place where it was used)
- Updated Zipkin Tracer unit tests
@rshriram @fabolive please review. cc @adriancole if you have time for review. |
@mattklein123 I will review this later today. |
LGTM, will defer final review to @fabolive |
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.
Looks good to me.
c2d49b0
to
312839e
Compare
I had a compilation error in zipkin_tracer_impl_test (I missed it due to other tests failing locally), so I amended the commit |
@clguimanMSFT thanks in the future once you open PRs please don't rebase (just push new commits). It's easier to review. Thank you. |
ci/bazel/get_workspace_status
Outdated
@@ -0,0 +1 @@ | |||
/source/bazel/get_workspace_status |
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.
Can you revert this change and below?
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.
sorry for that, I have reverted the change
Is there some easy way I can just run specific tests? Currently I have a lot of test failures locally and I would like to run just the tests directly affected by my change. |
If you are using the CI container directly, IIRC we don't have an option to override the tests. You could hack the script that launches the tests, for example: https://github.com/lyft/envoy/blob/master/ci/do_ci.sh#L49 |
@clguimanMSFT this is passing tests now. Are you OK to commit or did you want to look at something else? |
@mattklein123 I'm OK with the commit. |
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.
thanks!
Refers to github issue envoyproxy#1418