Conversation
... and only send session update for dropped events if session state changed
Codecov Report
@@ Coverage Diff @@
## main #2028 +/- ##
============================================
+ Coverage 75.60% 75.67% +0.06%
- Complexity 2270 2286 +16
============================================
Files 225 225
Lines 8072 8098 +26
Branches 852 862 +10
============================================
+ Hits 6103 6128 +25
+ Misses 1558 1557 -1
- Partials 411 413 +2
Continue to review full report at Codecov.
|
|
does this mean that, going forward if I have a The configuration which I'm using is: sampleRate = null // Send all errors. No sampling.
isAnrEnabled = false
beforeSend = BeforeSendCallback { event: SentryEvent, hint: Any? ->
return@BeforeSendCallback if (event.isCrashed) {
event
} else {
null // Swallow non-fatal errors.
}
} |
If you return |
|
Thanks @bruno-garcia! |
📜 Description
Also apply changes from #2001 and #2002 to
5.x.💡 Motivation and Context
To align event filter order and update of sessions for dropped events across SDKs (getsentry/develop#551)
💚 How did you test it?
Unit Tests
📝 Checklist
🔮 Next steps