-
Notifications
You must be signed in to change notification settings - Fork 118
feat(minidump): Allow multiple exceptions #6063
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: master
Are you sure you want to change the base?
Changes from all commits
aeb81ec
28287db
9f54aa6
b38c4a2
bfd46c0
5ee2495
3303c4c
6f1977d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -103,12 +103,13 @@ impl SentryError for Unreal { | |
| crate::utils::process_minidump( | ||
| event.get_or_insert_with(Default::default), | ||
| minidump, | ||
| ctx.processing.project_info | ||
| ); | ||
| metrics.bytes_ingested_event_minidump = (minidump.attachment_body_size() as u64).into(); | ||
| } | ||
| if let Some(acr) = &apple_crash_report { | ||
| crate::utils::process_apple_crash_report( | ||
| event.get_or_insert_with(Default::default) | ||
| event.get_or_insert_with(Default::default), ctx.processing.project_info | ||
| ); | ||
| metrics.bytes_ingested_event_applecrashreport = (acr.len() as u64).into(); | ||
| } | ||
|
Comment on lines
105
to
115
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: With the Suggested FixTo ensure the minidump placeholder remains at index 0, modify the logic for when both report types are present. One solution is to insert the Apple Crash Report placeholder at index 1 instead of 0. Alternatively, add a check to see if a minidump placeholder already exists and adjust the insertion logic accordingly. Prompt for AI AgentAlso affects:
Did we get this right? 👍 / 👎 to inform future reviews.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. With the feature flag disabled, the apple crash report placeholder would also overwrite the minidump exception. |
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.