-
Notifications
You must be signed in to change notification settings - Fork 4
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
Serialize now waits for the scheduler to be completed before returning #225
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## dev #225 +/- ##
===========================================
+ Coverage 59.58% 70.79% +11.20%
===========================================
Files 262 278 +16
Lines 10460 11205 +745
Branches 1105 1108 +3
===========================================
+ Hits 6233 7933 +1700
+ Misses 3964 2918 -1046
- Partials 263 354 +91 ☔ View full report in Codecov by Sentry. |
…hannels are empty
I think the empty message ensures all messages are complete and prevents the unstable tests |
Testing (normal sends, concurrent sends, send cancellation)
|
Trying to stop occasional indeterminate tests 😬
Cancellation for download should be snappier as the token is listened to and the stream happens asap with ResponseHeadersRead
Changing the Receive to a PriorityScheduler has it's own thread pool. The default scheduler/thread pool is swamped by Tasks so the CEF progress isn't updated to the end. Changing schedulers fixes that.