-
-
Notifications
You must be signed in to change notification settings - Fork 266
fix(replay): dont set isTerminating
on captureReplay for android
#3037
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?
Conversation
🚨 Detected changes in high risk code 🚨High-risk code has higher potential to break the SDK and may be hard to test. To prevent severe bugs, apply the rollout process for releasing such changes and be extra careful when changing and reviewing these files:
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #3037 +/- ##
==========================================
+ Coverage 87.97% 89.79% +1.81%
==========================================
Files 287 96 -191
Lines 9533 3331 -6202
==========================================
- Hits 8387 2991 -5396
+ Misses 1146 340 -806 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
…ureReplay-android
…ureReplay-android
@denrase updated it 👍 |
iOS Performance metrics 🚀
|
Revision | Plain | With Sentry | Diff |
---|---|---|---|
c8596a6 | 1234.11 ms | 1241.19 ms | 7.08 ms |
827bf09 | 1261.86 ms | 1276.41 ms | 14.55 ms |
6ba4675 | 1223.12 ms | 1238.17 ms | 15.04 ms |
App size
Revision | Plain | With Sentry | Diff |
---|---|---|---|
c8596a6 | 7.86 MiB | 9.44 MiB | 1.58 MiB |
827bf09 | 7.86 MiB | 9.44 MiB | 1.58 MiB |
6ba4675 | 7.86 MiB | 9.44 MiB | 1.58 MiB |
Android Performance metrics 🚀
|
Revision | Plain | With Sentry | Diff |
---|---|---|---|
827bf09 | 475.40 ms | 547.14 ms | 71.74 ms |
c8596a6 | 474.00 ms | 492.96 ms | 18.96 ms |
6ba4675 | 499.80 ms | 632.43 ms | 132.63 ms |
App size
Revision | Plain | With Sentry | Diff |
---|---|---|---|
827bf09 | 6.54 MiB | 7.53 MiB | 1015.27 KiB |
c8596a6 | 6.54 MiB | 7.53 MiB | 1015.27 KiB |
6ba4675 | 6.54 MiB | 7.53 MiB | 1015.26 KiB |
📜 Description
💡 Motivation and Context
Fixes a bug where we set the
isTerminating
parameter oncaptureReplay
to true if an unhandled error happens.This is a bug because Android replay will stop capturing segments as it expects the app to terminate - so for flutter we potentially run into missing segments
💚 How did you test it?
📝 Checklist
sendDefaultPii
is enabled🔮 Next steps