| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
There was a problem hiding this comment.
✅ Bugbot reviewed your changes and found no new issues!
Comment @cursor review or bugbot run to trigger another review on this PR
Reviewed by Cursor Bugbot for commit 985bfad. Configure here.
Sorry, something went wrong.
Codecov Results 📊✅ 119060 passed | ⏭️ 6762 skipped | Total: 125822 | Pass Rate: 94.63% | Execution Time: 442m 34s 📊 Comparison with Base Branch
✨ No test changes detected All tests are passing successfully. ✅ Patch coverage is 100.00%. Project has 2483 uncovered lines. @@ Coverage Diff @@
## main #PR +/-##
==========================================
+ Coverage 90.29% 90.30% +0.01%
==========================================
Files 193 193 —
Lines 25601 25596 -5
Branches 9436 9434 -2
==========================================
+ Hits 23116 23113 -3
- Misses 2485 2483 -2
- Partials 1435 1434 -1Generated by Codecov Action |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
The aiohttp integration currently has a dead branch that looks live:
sentry-python/sentry_sdk/integrations/aiohttp.py
Lines 341 to 356 in 8e6d73b
isinstance(current_span, StreamedSpan) is always false, so the first branch never matches. sentry_sdk.get_current_span() does not return StreamedSpans. (It reads from scope.span, but the streamed span is in scope.streamed_span).
This doesn't functionally matter, because even though we always fall through to the else branch, set_transaction_name already handles the streamed span case (including the name and source). This is tested in test_transaction_style_span_streaming already.
Remove the misleading branch.