-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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 refactoring error from moving WebSocket mask #9558
Conversation
CodSpeed Performance ReportMerging #9558 will improve performances by ×2.9Comparing Summary
Benchmarks breakdown
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
✅ All tests successful. No failed tests found. Additional details and impacted files@@ Coverage Diff @@
## master #9558 +/- ##
==========================================
+ Coverage 98.58% 98.60% +0.01%
==========================================
Files 113 113
Lines 35265 35266 +1
Branches 4188 4188
==========================================
+ Hits 34765 34773 +8
+ Misses 338 331 -7
Partials 162 162
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
and adjust the test to confirm the import works
Backport to 3.11: 💚 backport PR created✅ Backport PR branch: Backported as #9563 🤖 @patchback |
(cherry picked from commit 0a70662)
…WebSocket mask (#9563) Co-authored-by: J. Nick Koston <[email protected]>
#9543 missed changing the import when the code was relocated. Fix the import and adjust the test to confirm the import works. This only affected the writer since the reader now
cimport
s the mask code.Performance tests did not catch it because the benchmarks do not use masking. A new benchmark will be added in #9559