-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
change trace.WithAttributes to append values instead of replacing #315
change trace.WithAttributes to append values instead of replacing #315
Conversation
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.
minor nit about the doc. LGTM otherwise.
@@ -206,7 +206,7 @@ func WithStartTime(t time.Time) SpanOption { | |||
// data about the span. | |||
func WithAttributes(attrs ...core.KeyValue) SpanOption { |
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 please update the doc to indicate that multiple call to WithAttribute will appends the attributes? or something along the line.
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.
updated :)
…alTLS Test (#315) * Add static ECSDA cert files, cert generator script, and update auth_test * Add new line and comment to cert generation script * Remove extra new line from comment * Add test for generated certs and fix file names * Change key generation to ecdsa p256 * Run certificate generator script to retry CI tests * Remove static certificate files and bash script * Update comment to retry tests * Update comment to retry tests
Fixes #309.