-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
fix: DataCategoryExact should match Relay #94663
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: master
Are you sure you want to change the base?
Conversation
@@ -748,15 +748,12 @@ export enum CreditType { | |||
ERROR = 'error', | |||
TRANSACTION = 'transaction', | |||
SPAN = 'span', | |||
SPAN_INDEXED = 'spanIndexed', |
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.
removed all the ones that don't exist in the backend
SPAN_INDEXED = 'spanIndexed', | ||
PROFILE_DURATION = 'profileDuration', | ||
PROFILE_DURATION_UI = 'profileDurationUI', | ||
PROFILE_DURATION = 'profile_duration', |
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.
this was the wrong format the whole time; credit types are serialized in lower case snake case
Codecov ReportAll modified and coverable lines are covered by tests ✅ ✅ All tests successful. No failed tests found. Additional details and impacted files@@ Coverage Diff @@
## master #94663 +/- ##
=======================================
Coverage 79.24% 79.24%
=======================================
Files 10422 10422
Lines 603079 603079
Branches 23470 23470
=======================================
Hits 477893 477893
Misses 124680 124680
Partials 506 506 |
Closes https://linear.app/getsentry/issue/BIL-972/make-datacategoryexact-consistent
Hence the name :)