-
Notifications
You must be signed in to change notification settings - Fork 1.2k
sdk/trace: trace id high 64 bit tests #7212
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
base: main
Are you sure you want to change the base?
sdk/trace: trace id high 64 bit tests #7212
Conversation
Reviewers, please add skip changelog label. |
This PR is ready for review. |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #7212 +/- ##
=======================================
- Coverage 85.5% 85.5% -0.1%
=======================================
Files 277 277
Lines 24654 24654
=======================================
- Hits 21088 21086 -2
- Misses 3187 3189 +2
Partials 379 379 🚀 New features to boost your workflow:
|
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 nit comments regarding the names
high uint64 | ||
low uint64 |
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.
high uint64 | |
low uint64 | |
traceIDHigh uint64 | |
traceIDLow uint64 |
startHigh uint64 = 0x1001_1001_1001_1001 | ||
startLow uint64 = 0x2002_2002_2002_2002 |
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.
startHigh uint64 = 0x1001_1001_1001_1001 | |
startLow uint64 = 0x2002_2002_2002_2002 | |
startTraceIDHigh uint64 = 0x1001_1001_1001_1001 | |
startTraceIDLow uint64 = 0x2002_2002_2002_2002 |
Fixes #7160
testIDGenerator
to have both low and high bits (in uint64 form) since we can't store 128 bits integerDoes not need a CHANGELOG entry - test only.