-
Notifications
You must be signed in to change notification settings - Fork 520
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
Fix non scope related types #3970
Conversation
48b5b17
to
91fd8d8
Compare
❌ 1 Tests Failed:
View the top 1 failed tests by shortest run time
To view more test analytics, go to the Test Analytics Dashboard |
1b9e8c2
to
1c1b0a1
Compare
1c1b0a1
to
cefce7f
Compare
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.
Except for one question, looks good!
@@ -14,6 +14,7 @@ Looking to upgrade from Sentry SDK 2.x to 3.x? Here's a comprehensive list of wh | |||
- You can no longer change the sampled status of a span with `span.sampled = False` after starting it. | |||
- The `Span()` constructor does not accept a `hub` parameter anymore. | |||
- `Span.finish()` does not accept a `hub` parameter anymore. | |||
- `Span.finish()` no longer returns the `event_id` if the event is sent to sentry. |
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.
isnt this a problem? I remember that we need the event_id returned by capture_event() or else the user feedback modal can not be used?
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.
user feedback is for error events, not transactions
part of #3929