-
-
Notifications
You must be signed in to change notification settings - Fork 317
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: Session replay for crash not created because of a race condition #4314
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #4314 +/- ##
=============================================
- Coverage 91.649% 91.622% -0.028%
=============================================
Files 618 617 -1
Lines 50251 50180 -71
Branches 18145 18062 -83
=============================================
- Hits 46055 45976 -79
- Misses 4103 4112 +9
+ Partials 93 92 -1
... and 17 files with indirect coverage changes Continue to review full report in Codecov by Sentry.
|
Performance metrics 🚀
|
Revision | Plain | With Sentry | Diff |
---|---|---|---|
b9b0f0a | 1251.45 ms | 1257.86 ms | 6.41 ms |
11b2ffa | 1204.86 ms | 1218.16 ms | 13.31 ms |
973d574 | 1237.35 ms | 1256.15 ms | 18.80 ms |
e89dc54 | 1220.57 ms | 1233.45 ms | 12.88 ms |
6e1452d | 1241.69 ms | 1253.47 ms | 11.78 ms |
cd76c54 | 1223.41 ms | 1249.65 ms | 26.24 ms |
92bc771 | 1236.60 ms | 1245.67 ms | 9.07 ms |
8d16504 | 1235.50 ms | 1258.76 ms | 23.26 ms |
533c68f | 1236.54 ms | 1256.68 ms | 20.14 ms |
1731a1c | 1237.33 ms | 1255.45 ms | 18.12 ms |
App size
Revision | Plain | With Sentry | Diff |
---|---|---|---|
b9b0f0a | 20.76 KiB | 434.94 KiB | 414.18 KiB |
11b2ffa | 22.85 KiB | 412.67 KiB | 389.82 KiB |
973d574 | 21.58 KiB | 542.39 KiB | 520.81 KiB |
e89dc54 | 22.85 KiB | 412.60 KiB | 389.75 KiB |
6e1452d | 21.58 KiB | 419.68 KiB | 398.10 KiB |
cd76c54 | 21.58 KiB | 675.85 KiB | 654.27 KiB |
92bc771 | 21.58 KiB | 699.30 KiB | 677.72 KiB |
8d16504 | 20.76 KiB | 434.92 KiB | 414.16 KiB |
533c68f | 21.58 KiB | 630.28 KiB | 608.70 KiB |
1731a1c | 21.58 KiB | 542.28 KiB | 520.69 KiB |
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.
I don't see why the new replay was started before the previous was processed.
But the fix looks good. 👍
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.
Looks fine. I would prefer to see SentryFileManager instead of naked NSFileManager usages. Even if we don't use an instance of SentryFileManager, we should be breaking out the logic into static functions so we can reuse what we've already built, instead of always rewriting the same error handling.
📜 Description
This fix an issue where the SR is not sent for crashes that mostly happens in RN.
💚 How did you test it?
Unit tests
📝 Checklist
You have to check all boxes before merging:
sendDefaultPII
is enabled.🔮 Next steps