fix(java): Ensure potential callback exceptions are caught #2123#2291
Merged
Conversation
markushi
requested review from
adinauer,
romtsn and
stefanosiano
as code owners
October 12, 2022 06:36
Contributor
Performance metrics 🚀
|
| Revision | Plain | With Sentry | Diff |
|---|---|---|---|
| 7300956 | 337.57 ms | 384.21 ms | 46.64 ms |
| 4ca1d7b | 328.46 ms | 368.22 ms | 39.76 ms |
| 54cebc8 | 300.86 ms | 341.43 ms | 40.57 ms |
| c5ccd8a | 329.98 ms | 365.52 ms | 35.54 ms |
| 1e4690d | 354.69 ms | 387.88 ms | 33.19 ms |
| 4dd88fe | 306.88 ms | 391.58 ms | 84.70 ms |
| 4dd88fe | 302.12 ms | 331.17 ms | 29.04 ms |
| 7300956 | 324.20 ms | 353.79 ms | 29.58 ms |
| 3d89dea | 345.59 ms | 364.06 ms | 18.47 ms |
| 54cebc8 | 331.12 ms | 385.14 ms | 54.02 ms |
App size
| Revision | Plain | With Sentry | Diff |
|---|---|---|---|
| 7300956 | 1.73 MiB | 2.29 MiB | 578.69 KiB |
| 4ca1d7b | 1.73 MiB | 2.29 MiB | 579.88 KiB |
| 54cebc8 | 1.73 MiB | 2.29 MiB | 579.43 KiB |
| c5ccd8a | 1.74 MiB | 2.33 MiB | 607.44 KiB |
| 1e4690d | 1.74 MiB | 2.33 MiB | 604.92 KiB |
| 4dd88fe | 1.73 MiB | 2.29 MiB | 579.50 KiB |
| 4dd88fe | 1.73 MiB | 2.29 MiB | 579.50 KiB |
| 7300956 | 1.73 MiB | 2.29 MiB | 578.69 KiB |
| 3d89dea | 1.74 MiB | 2.33 MiB | 604.92 KiB |
| 54cebc8 | 1.73 MiB | 2.29 MiB | 579.43 KiB |
Previous results on branch: fix/capture-callback-exceptions
Startup times
| Revision | Plain | With Sentry | Diff |
|---|---|---|---|
| a6facbc | 305.74 ms | 333.83 ms | 28.09 ms |
| 179e40b | 308.38 ms | 313.78 ms | 5.40 ms |
| 558a3bd | 277.29 ms | 350.02 ms | 72.73 ms |
| 2e5138d | 276.08 ms | 343.17 ms | 67.09 ms |
App size
| Revision | Plain | With Sentry | Diff |
|---|---|---|---|
| a6facbc | 1.73 MiB | 2.29 MiB | 579.94 KiB |
| 179e40b | 1.73 MiB | 2.29 MiB | 579.96 KiB |
| 558a3bd | 1.73 MiB | 2.29 MiB | 579.94 KiB |
| 2e5138d | 1.73 MiB | 2.29 MiB | 579.94 KiB |
Codecov ReportBase: 79.96% // Head: 80.10% // Increases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## main #2291 +/- ##
============================================
+ Coverage 79.96% 80.10% +0.13%
- Complexity 3425 3430 +5
============================================
Files 242 242
Lines 12734 12754 +20
Branches 1702 1702
============================================
+ Hits 10183 10216 +33
+ Misses 1901 1889 -12
+ Partials 650 649 -1
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
marandaneto
reviewed
Oct 12, 2022
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
📜 Description
Try/Catches callback executions and add logging in case of errors.
💡 Motivation and Context
If certain callbacks provided via the Sentry, Hub or SentryOptions crash during execution, it could crash the whole application. So let's catch 'em all 😄
Related issues:
Callbacks which were already handled:
Callbacks:
💚 How did you test it?
Added tests where required
📝 Checklist
🔮 Next steps