-
Notifications
You must be signed in to change notification settings - Fork 666
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
Fixing the serialization of a tuple element by coercing it into a string #865
Fixing the serialization of a tuple element by coercing it into a string #865
Conversation
The CI for this PR has failed because of the |
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.
Quick comment on the change log, but looks good otherwise! Thanks for submitting.
@@ -8,6 +8,8 @@ Released 2020-05-27 | |||
|
|||
- Transform resource to tags when exporting | |||
([#645](https://github.com/open-telemetry/opentelemetry-python/pull/645)) | |||
- ext/boto: Could not serialize attribute aws.region to tag when exporting via 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.
Would you mind changing this to be more descriptive of the change? I think the "why" is good too, but knowing precisely what the fix or behavioral change was will apply more broadly to those reading the changelog.
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.
ack
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 for addressing the changelog!
Fixes #818
This PR aims at fix the serialization of tuple type values by coercing them into a string.
Tests make sure that this type is handled correctly. The current test is enhanced to include tuple type as well.