-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
feat: Add Spotlight #61355
feat: Add Spotlight #61355
Conversation
Co-authored-by: Abhijeet Prasad <aprasad@sentry.io>
🚨 Warning: This pull request contains Frontend and Backend changes! It's discouraged to make changes to Sentry's Frontend and Backend in a single pull request. The Frontend and Backend are not atomically deployed. If the changes are interdependent of each other, they must be separated into two pull requests and be made forward or backwards compatible, such that the Backend or Frontend can be safely deployed independently. Have questions? Please ask in the |
@@ -458,6 +458,7 @@ def flush( | |||
ThreadingIntegration(propagate_hub=True), | |||
OpenAiIntegration(capture_prompts=True), | |||
], | |||
spotlight=settings.IS_DEV, |
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.
Where does this get 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.
You mean Spotlight?
Only in dev mode this option should be True
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## master #61355 +/- ##
==========================================
- Coverage 83.10% 81.09% -2.02%
==========================================
Files 5546 5195 -351
Lines 237303 228310 -8993
Branches 38257 38285 +28
==========================================
- Hits 197209 185145 -12064
+ Misses 39810 37550 -2260
- Partials 284 5615 +5331
|
Need to figure out this: when I run locally in the branch: |
@HazAT it needs to be a dep, not devDep |
Done, thx |
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.
ideally we'd not have the webpack plugin as a dep, but I think that'd require some webpack config refactoring.
Follow-up: #60523